Skip to content

Commit

Permalink
rubycritic.gemspec: Apply rubocop's Gemspec/AddRuntimeDependency fix
Browse files Browse the repository at this point in the history
  • Loading branch information
faisal committed Aug 31, 2024
1 parent c572ea1 commit 4290ce8
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions rubycritic.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -30,17 +30,17 @@ Gem::Specification.new do |spec|
spec.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
spec.require_path = 'lib'

spec.add_runtime_dependency 'flay'
spec.add_runtime_dependency 'flog'
spec.add_runtime_dependency 'launchy'
spec.add_runtime_dependency 'parser'
spec.add_runtime_dependency 'rainbow'
spec.add_runtime_dependency 'reek', '< 7.0'
spec.add_runtime_dependency 'rexml'
spec.add_runtime_dependency 'ruby_parser'
spec.add_runtime_dependency 'simplecov'
spec.add_runtime_dependency 'tty-which'
spec.add_runtime_dependency 'virtus'
spec.add_dependency 'flay'
spec.add_dependency 'flog'
spec.add_dependency 'launchy'
spec.add_dependency 'parser'
spec.add_dependency 'rainbow'
spec.add_dependency 'reek', '< 7.0'
spec.add_dependency 'rexml'
spec.add_dependency 'ruby_parser'
spec.add_dependency 'simplecov'
spec.add_dependency 'tty-which'
spec.add_dependency 'virtus'

spec.add_development_dependency 'aruba'
spec.add_development_dependency 'bundler'
Expand Down

0 comments on commit 4290ce8

Please sign in to comment.