Skip to content

Commit

Permalink
Switch to add_dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
crdx committed Aug 4, 2024
1 parent 2865674 commit d8c1672
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ Style/MethodCallWithArgsParentheses:
- attr_reader
- attr_accessor
- include
- add_runtime_dependency
- add_dependency
- add_development_dependency
- gem
- source
Expand Down
10 changes: 5 additions & 5 deletions enparallel.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ Gem::Specification.new do |spec|
spec.files = Dir['lib/**/*']
spec.executables = ['enparallel']

spec.add_runtime_dependency 'colorize', '~> 0.8.1'
spec.add_runtime_dependency 'docopt', '~> 0.6.1'
spec.add_runtime_dependency 'json', '~> 2.7'
spec.add_runtime_dependency 'require_all', '~> 3.0'
spec.add_runtime_dependency 'soml', '~> 1.0.1'
spec.add_dependency 'colorize', '~> 0.8.1'
spec.add_dependency 'docopt', '~> 0.6.1'
spec.add_dependency 'json', '~> 2.7'
spec.add_dependency 'require_all', '~> 3.0'
spec.add_dependency 'soml', '~> 1.0.1'

spec.add_development_dependency 'rake', '~> 13.0'
spec.add_development_dependency 'rspec', '~> 3.8'
Expand Down

0 comments on commit d8c1672

Please sign in to comment.