aboutsummaryrefslogtreecommitdiffstats
path: root/Rakefile
diff options
context:
space:
mode:
authorSamuel Giddins <segiddins@segiddins.me>2015-10-04 17:05:35 -0500
committerSamuel Giddins <segiddins@segiddins.me>2015-10-18 19:26:43 -0500
commit18e50d45ac22169cd071d729016d0ba0122a7335 (patch)
tree4a5e08e16f4624c10ad4a3fcc908271a61b9f6af /Rakefile
parent7eedfd15853e197d1da69e07bb54d789bb2333d4 (diff)
downloadbundler-18e50d45ac22169cd071d729016d0ba0122a7335.tar.gz
[RuboCop] Regenerate todo file with new file excludes
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Rakefile b/Rakefile
index 31dd7f86..745adfb5 100644
--- a/Rakefile
+++ b/Rakefile
@@ -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.34.1" if RUBY_VERSION >= "1.9.3" # can't go in the gemspec because of the ruby version requirement
+ deps["rubocop"] ||= "= 0.34.2" 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.34.1"
+ gem "rubocop", "= 0.34.2"
require "rubocop/rake_task"
RuboCop::RakeTask.new
end