From d1c71e473d14ea186d7569c738a857babe36f225 Mon Sep 17 00:00:00 2001 From: Ian MacLeod Date: Mon, 9 Jun 2014 17:34:33 -0700 Subject: [PATCH] `Rubocop` is now `RuboCop` See https://github.com/bbatsov/rubocop/commit/ff167d8f202baf7a68955db0aaf0dc29afb7e7ee --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 05da4ae9..5176f04e 100644 --- a/Rakefile +++ b/Rakefile @@ -58,7 +58,7 @@ end require 'rubocop/rake_task' desc 'Run RuboCop to check code consistency' -Rubocop::RakeTask.new(:rubocop) do |task| +RuboCop::RakeTask.new(:rubocop) do |task| task.fail_on_error = false end