diff options
author | Samuel E. Giddins <segiddins@segiddins.me> | 2015-08-13 09:28:30 -0700 |
---|---|---|
committer | Samuel E. Giddins <segiddins@segiddins.me> | 2015-08-13 09:28:30 -0700 |
commit | 21ddb03ee952f96ef3cf09935c8c90db2503e088 (patch) | |
tree | 3a6737b134e2ab0f0892fced32a721670cb02232 /Rakefile | |
parent | 05c8262d3dff0c50c77ac8a1c6933e18f63c71fe (diff) | |
parent | b779901301730efd1fe3a30e3e2f1a00c8120c1a (diff) | |
download | bundler-21ddb03ee952f96ef3cf09935c8c90db2503e088.tar.gz |
Merge pull request #3920 from bundler/seg-update-rubocop
[RuboCop] Update to 0.33.0
Diffstat (limited to 'Rakefile')
-rw-r--r-- | Rakefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -33,7 +33,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" @@ -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.32.1" + gem "rubocop", "= 0.33.0" require "rubocop/rake_task" RuboCop::RakeTask.new end |