From 0656cd6a318419fe1313941ba90f938008854ca1 Mon Sep 17 00:00:00 2001 From: Fabian Rodriguez Date: Sat, 12 Apr 2014 18:28:13 -0300 Subject: [PATCH] Fix rubocop config. Since rubycop v0.20.0 'AllCops/Excludes' and 'AllCops/Includes' where renamed to 'AllCops/Exclude' and 'AllCops/Include' --- .rubocop.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.rubocop.yml b/.rubocop.yml index fb5fd96a..44966aac 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -1,10 +1,10 @@ AllCops: - Includes: + Include: - Rakefile - Gemfile - config.ru - gem_rake_helper.rb - Excludes: + Exclude: - script/** - vendor/** - bin/**