summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorColby Swandale <colby@taplaboratories.com>2017-02-20 19:40:32 +1100
committerColby Swandale <colby@taplaboratories.com>2017-02-20 19:40:32 +1100
commitef4c2c7f78a76d0cb2a0a0040457a60650d783c7 (patch)
tree9ce9f663393a9c195bad9f870cb66c43dc5874f2 /Rakefile
parentc7f3d05ec03326d4c6bac6b26ba41f06f0236e66 (diff)
downloadbundler-ef4c2c7f78a76d0cb2a0a0040457a60650d783c7.tar.gz
[Rubocop] Update Rubocop to 0.47.1
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Rakefile b/Rakefile
index 6952e13a1d..9b3538707e 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.46.0" if RUBY_VERSION >= "2.0.0" # can't go in the gemspec because of the ruby version requirement
+ deps["rubocop"] ||= "= 0.47.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.46.0"
+ gem "rubocop", "= 0.47.1"
require "rubocop/rake_task"
RuboCop::RakeTask.new
end