summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorKoichi ITO <lol@wut.com>2017-05-30 06:34:12 +0900
committerKoichi ITO <lol@wut.com>2017-05-30 07:19:00 +0900
commitf20285c0d38e59b0061997dc3cead94666731655 (patch)
tree4fc25734b87edef23488702257d933477f9ac63a /Rakefile
parentb3047f8c3909703123558e4f22c6ada37e019702 (diff)
downloadbundler-f20285c0d38e59b0061997dc3cead94666731655.tar.gz
[RuboCop] Update to 0.49.1
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Rakefile b/Rakefile
index 3cb8a73c83..d458888994 100644
--- a/Rakefile
+++ b/Rakefile
@@ -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