summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorSamuel E. Giddins <segiddins@segiddins.me>2015-08-07 23:29:21 -0700
committerSamuel E. Giddins <segiddins@segiddins.me>2015-08-07 23:29:21 -0700
commitb779901301730efd1fe3a30e3e2f1a00c8120c1a (patch)
treebe0902625af812bb292243baf28526e166f5bec6 /Rakefile
parent83bdb7f7ddc95bed78c18320bd8baa2ba8f3972a (diff)
downloadbundler-b779901301730efd1fe3a30e3e2f1a00c8120c1a.tar.gz
[RuboCop] Update to 0.33.0
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Rakefile b/Rakefile
index 8d85b171ee..50d5ebfc01 100644
--- a/Rakefile
+++ b/Rakefile
@@ -90,7 +90,7 @@ namespace :spec do
deps = Hash[BUNDLER_SPEC.development_dependencies.map do |d|
[d.name, d.requirement.to_s]
end]
- deps["rubocop"] ||= ">= 0.32.1" if RUBY_VERSION >= "1.9.3" # can't go in the gemspec because of the ruby version requirement
+ deps["rubocop"] ||= "= 0.33.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"
@@ -145,7 +145,7 @@ begin
if RUBY_VERSION >= "1.9.3"
# can't go in the gemspec because of the ruby version requirement
- gem "rubocop", ">= 0.32.1"
+ gem "rubocop", "= 0.33.0"
require "rubocop/rake_task"
RuboCop::RakeTask.new
end