summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorColby Swandale <colby@taplaboratories.com>2017-09-18 13:06:43 +0900
committerColby Swandale <colby@taplaboratories.com>2017-09-18 13:06:43 +0900
commit3ed037008bf911ba75eb57cf86140e9142f52899 (patch)
tree609f2e5977e615b6c2f87d9412bc775de9bc1a05 /Rakefile
parent4fc8fe968ff61ece41f5a74ebc117f84cf22f827 (diff)
downloadbundler-3ed037008bf911ba75eb57cf86140e9142f52899.tar.gz
update rubocop to 0.50colby/rubocop-050
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Rakefile b/Rakefile
index a6dd6dbdba..39a61f4fea 100644
--- a/Rakefile
+++ b/Rakefile
@@ -42,7 +42,7 @@ namespace :spec do
deps = Hash[bundler_spec.development_dependencies.map do |d|
[d.name, d.requirement.to_s]
end]
- deps["rubocop"] ||= "= 0.49.1" if RUBY_VERSION >= "2.0.0" # can't go in the gemspec because of the ruby version requirement
+ deps["rubocop"] ||= "= 0.50.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"
@@ -103,7 +103,7 @@ begin
if RUBY_VERSION >= "2.0.0"
# can't go in the gemspec because of the ruby version requirement
- gem "rubocop", "= 0.49.1"
+ gem "rubocop", "= 0.50.0"
require "rubocop/rake_task"
RuboCop::RakeTask.new
end