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 c2f919b commit cdcffa2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 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
14 changes: 7 additions & 7 deletions docwatch.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ Gem::Specification.new do |spec|
spec.files = Dir['{lib,res}/**/*']
spec.executables = ['docwatch']

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 'nokogiri', '~> 1.10'
spec.add_runtime_dependency 'redcarpet', '~> 3.5'
spec.add_runtime_dependency 'require_all', '~> 3.0'
spec.add_runtime_dependency 'rouge', '~> 4.0'
spec.add_dependency 'colorize', '~> 0.8.1'
spec.add_dependency 'docopt', '~> 0.6.1'
spec.add_dependency 'json', '~> 2.7'
spec.add_dependency 'nokogiri', '~> 1.10'
spec.add_dependency 'redcarpet', '~> 3.5'
spec.add_dependency 'require_all', '~> 3.0'
spec.add_dependency 'rouge', '~> 4.0'

spec.add_development_dependency 'rake', '~> 13.0'
end

0 comments on commit cdcffa2

Please sign in to comment.