Skip to content

Commit

Permalink
Do not require some dev gems automatically
Browse files Browse the repository at this point in the history
  • Loading branch information
tagliala committed Sep 16, 2024
1 parent 797db53 commit 31e7449
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ group :development do
gem 'rack-test'
gem 'rake'
gem 'rspec'
gem 'simplecov'
gem 'simplecov', require: false
gem 'timecop'
gem 'yard'
gem 'yard', require: false
end
6 changes: 1 addition & 5 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,4 @@ require 'bundler/setup'
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new

# YARD
require 'yard'
YARD::Rake::YardocTask.new

task default: [:spec, :yard]
task default: :spec

0 comments on commit 31e7449

Please sign in to comment.