Skip to content

Commit

Permalink
Upgrade rubocop to version 0.52.1 (#193)
Browse files Browse the repository at this point in the history
  • Loading branch information
pkuczynski authored Jan 22, 2018
1 parent 49d91b2 commit 2ad2542
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
* Make dry-validation dependency less strict allowing to use newer versions ([#183](https://github.com/railsconfig/config/pull/183))
* Fix `key?` and `has_key?`, which raise NoMethodError in non Rails environment, by using ActiveSupport `#delegate` implicitly ([#185](https://github.com/railsconfig/config/pull/185))
* Update `deep_merge` dependency to latest version (v1.2.1) ([#191](https://github.com/railsconfig/config/pull/191))
* Upgrade `rubocop` to version 0.52.1 ([#193](https://github.com/railsconfig/config/pull/193))

## 1.6.0

Expand Down
7 changes: 6 additions & 1 deletion config.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,12 @@ Gem::Specification.new do |s|

# Static code analysis
s.add_development_dependency 'mdl', '~> 0.4', '>= 0.4.0'
s.add_development_dependency 'rubocop', '~> 0.46', '>= 0.46.0'

if RUBY_VERSION < '2.1'
s.add_development_dependency 'rubocop', '~> 0.50', '>= 0.50.0'
else
s.add_development_dependency 'rubocop', '~> 0.52', '>= 0.52.1'
end

if ENV['TRAVIS']
s.add_development_dependency 'simplecov', '~> 0.12.0'
Expand Down

0 comments on commit 2ad2542

Please sign in to comment.