summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorSamuel Giddins <segiddins@segiddins.me>2016-03-09 11:14:53 -0600
committerSamuel Giddins <segiddins@segiddins.me>2016-03-09 11:14:53 -0600
commit2d0fc718ea1a7365182152af370a0a5d418df220 (patch)
tree41978063c783b3c34c1e19d32d923a3218af5d48 /Rakefile
parent2d7d9c8b4404a74fbb4baacc1cee809318f3123e (diff)
downloadbundler-2d0fc718ea1a7365182152af370a0a5d418df220.tar.gz
[RuboCop] Update to 0.38.0seg-rubocop-0.38
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Rakefile b/Rakefile
index 647885265a..6cdcfcb904 100644
--- a/Rakefile
+++ b/Rakefile
@@ -34,7 +34,7 @@ namespace :spec do
deps = Hash[BUNDLER_SPEC.development_dependencies.map do |d|
[d.name, d.requirement.to_s]
end]
- deps["rubocop"] ||= "= 0.37.1" if RUBY_VERSION >= "1.9.3" # can't go in the gemspec because of the ruby version requirement
+ deps["rubocop"] ||= "= 0.38.0" if RUBY_VERSION >= "1.9.3" # 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"
@@ -88,7 +88,7 @@ begin
if RUBY_VERSION >= "1.9.3"
# can't go in the gemspec because of the ruby version requirement
- gem "rubocop", "= 0.37.1"
+ gem "rubocop", "= 0.38.0"
require "rubocop/rake_task"
RuboCop::RakeTask.new
end