diff options
author | Koichi ITO <lol@wut.com> | 2017-05-30 06:34:12 +0900 |
---|---|---|
committer | Koichi ITO <lol@wut.com> | 2017-05-30 07:19:00 +0900 |
commit | f20285c0d38e59b0061997dc3cead94666731655 (patch) | |
tree | 4fc25734b87edef23488702257d933477f9ac63a /Rakefile | |
parent | b3047f8c3909703123558e4f22c6ada37e019702 (diff) | |
download | bundler-f20285c0d38e59b0061997dc3cead94666731655.tar.gz |
[RuboCop] Update to 0.49.1
Diffstat (limited to 'Rakefile')
-rw-r--r-- | Rakefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -39,7 +39,7 @@ namespace :spec do deps = Hash[BUNDLER_SPEC.development_dependencies.map do |d| [d.name, d.requirement.to_s] end] - deps["rubocop"] ||= "= 0.48.1" if RUBY_VERSION >= "2.0.0" # can't go in the gemspec because of the ruby version requirement + deps["rubocop"] ||= "= 0.49.1" if RUBY_VERSION >= "2.0.0" # can't go in the gemspec because of the ruby version requirement # JRuby can't build ronn or rdiscount, so we skip that if defined?(RUBY_ENGINE) && RUBY_ENGINE == "jruby" @@ -93,7 +93,7 @@ begin if RUBY_VERSION >= "2.0.0" # can't go in the gemspec because of the ruby version requirement - gem "rubocop", "= 0.48.1" + gem "rubocop", "= 0.49.1" require "rubocop/rake_task" RuboCop::RakeTask.new end |