summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authoremsk <emsk1987@gmail.com>2017-03-31 00:16:29 +0900
committeremsk <emsk1987@gmail.com>2017-03-31 00:16:29 +0900
commit22309cc70d0ef5cdfb6ee977e86377331eab8e4d (patch)
tree0a16f0efe70aeab46c5ddac2720f33dde9702f93 /Rakefile
parentca7464464a46dc9e2edbb14331828c03248ecfdf (diff)
downloadbundler-22309cc70d0ef5cdfb6ee977e86377331eab8e4d.tar.gz
[RuboCop] Update to 0.48.0
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Rakefile b/Rakefile
index 9b3538707e..44b51efd69 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.47.1" if RUBY_VERSION >= "2.0.0" # can't go in the gemspec because of the ruby version requirement
+ deps["rubocop"] ||= "= 0.48.0" 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.47.1"
+ gem "rubocop", "= 0.48.0"
require "rubocop/rake_task"
RuboCop::RakeTask.new
end