Skip to content

Commit

Permalink
Puts dev dependencies in their own group
Browse files Browse the repository at this point in the history
  • Loading branch information
bougyman committed Apr 11, 2024
1 parent cbe3ad9 commit 32a0102
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
15 changes: 8 additions & 7 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,13 @@ source 'https://rubygems.org'
# Specify your gem's dependencies in namespacer.gemspec
gemspec

gem 'rake', '~> 13.0'
group :development do
gem 'rake', '~> 13.0'

gem 'minitest', '~> 5.16'
gem 'minitest', '~> 5.16'

gem 'pry-byebug'
gem 'rubocop', '~> 1.21'
gem 'rubocop-minitest'
gem 'rubocop-performance'
gem 'rubocop-rake'
gem 'pry-byebug'
gem 'rubocop-minitest'
gem 'rubocop-performance'
gem 'rubocop-rake'
end
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
PATH
remote: .
specs:
namespacer-rb (0.1.5)
namespacer-rb (0.1.6)
parser (~> 3)
rubocop (~> 1.21)
ruby-filemagic (~> 0.7)
tty-command (~> 0.10)
unparser (~> 0.6)
Expand Down Expand Up @@ -75,7 +76,6 @@ DEPENDENCIES
namespacer-rb!
pry-byebug
rake (~> 13.0)
rubocop (~> 1.21)
rubocop-minitest
rubocop-performance
rubocop-rake
Expand Down
1 change: 1 addition & 0 deletions namespacer.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ Gem::Specification.new do |spec|
spec.require_paths = ['lib']

spec.add_dependency 'parser', '~> 3'
spec.add_dependency 'rubocop', '~> 1.21'
spec.add_dependency 'ruby-filemagic', '~> 0.7'
spec.add_dependency 'tty-command', '~> 0.10'
spec.add_dependency 'unparser', '~> 0.6'
Expand Down

0 comments on commit 32a0102

Please sign in to comment.