From afd95cfa8cdc755f4f054cc0e8d7843c981e0c7d Mon Sep 17 00:00:00 2001 From: Guilhem Lettron Date: Tue, 3 Jun 2014 17:46:26 +0200 Subject: [PATCH] Fix rubocop regression --- Gemfile | 2 +- Rakefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Gemfile b/Gemfile index 880bbed..39c60fb 100644 --- a/Gemfile +++ b/Gemfile @@ -5,7 +5,7 @@ gem 'berkshelf', '~> 2.0.10' group :test do gem 'foodcritic', '~> 3.0' - gem 'rubocop', '~> 0.20' + gem 'rubocop', '~> 0.23.0' end group :integration do diff --git a/Rakefile b/Rakefile index dae01d4..4a798ce 100644 --- a/Rakefile +++ b/Rakefile @@ -5,7 +5,7 @@ namespace :style do begin require 'rubocop/rake_task' desc 'Run Ruby style checks' - Rubocop::RakeTask.new(:ruby) + RuboCop::RakeTask.new(:ruby) rescue LoadError puts '>>>>> Rubocop gem not loaded, omitting tasks' unless ENV['CI'] end -- 2.47.3