Skip to content

Commit

Permalink
Be less restrictive on the rubocop version required.
Browse files Browse the repository at this point in the history
`~> 0.41.0` is too restrictive. Will only work with `0.41.x` and will basically require this to be updated on each new rubocop release. `~> 0.41` grants us dependency sanity on `0.x.y`.
  • Loading branch information
franciscoj authored Oct 6, 2016
1 parent 57fafd6 commit 467d408
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rubocop-migrations.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']

spec.add_runtime_dependency 'rubocop', '~> 0.41.0'
spec.add_runtime_dependency 'rubocop', '~> 0.41'

spec.add_development_dependency 'bundler', '~> 1.11'
spec.add_development_dependency 'rake', '~> 10.0'
Expand Down

0 comments on commit 467d408

Please sign in to comment.