Skip to content

Commit

Permalink
Simplify Gemfile
Browse files Browse the repository at this point in the history
Dependencies are required explicitly. There is no need for groups or
`require: false`.
  • Loading branch information
i7an committed Dec 10, 2024
1 parent e270520 commit ab4b60c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
/pkg/
/spec/reports/
/tmp/
*.DS_Store

# rspec failure tracking
.rspec_status
Expand Down
14 changes: 6 additions & 8 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,9 @@ source 'https://rubygems.org'

gemspec

group :development do
gem 'mail'
gem 'rake', '~> 13.0'
gem 'rspec', '~> 3.0'
gem 'rubocop', '~> 1.21'
gem 'rubocop-rake', require: false
gem 'rubocop-rspec', require: false
end
gem 'mail'
gem 'rake', '~> 13.0'
gem 'rspec', '~> 3.0'
gem 'rubocop', '~> 1.21'
gem 'rubocop-rake'
gem 'rubocop-rspec'

0 comments on commit ab4b60c

Please sign in to comment.