diff options
author | emsk <emsk1987@gmail.com> | 2017-03-31 00:16:29 +0900 |
---|---|---|
committer | emsk <emsk1987@gmail.com> | 2017-03-31 00:16:29 +0900 |
commit | 22309cc70d0ef5cdfb6ee977e86377331eab8e4d (patch) | |
tree | 0a16f0efe70aeab46c5ddac2720f33dde9702f93 /Rakefile | |
parent | ca7464464a46dc9e2edbb14331828c03248ecfdf (diff) | |
download | bundler-22309cc70d0ef5cdfb6ee977e86377331eab8e4d.tar.gz |
[RuboCop] Update to 0.48.0
Diffstat (limited to 'Rakefile')
-rw-r--r-- | Rakefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -39,7 +39,7 @@ namespace :spec do deps = Hash[BUNDLER_SPEC.development_dependencies.map do |d| [d.name, d.requirement.to_s] end] - deps["rubocop"] ||= "= 0.47.1" if RUBY_VERSION >= "2.0.0" # can't go in the gemspec because of the ruby version requirement + deps["rubocop"] ||= "= 0.48.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" @@ -93,7 +93,7 @@ begin if RUBY_VERSION >= "2.0.0" # can't go in the gemspec because of the ruby version requirement - gem "rubocop", "= 0.47.1" + gem "rubocop", "= 0.48.0" require "rubocop/rake_task" RuboCop::RakeTask.new end |