Rakefile in signore-0.3.3 vs Rakefile in signore-0.4.0

- old
+ new

@@ -8,12 +8,14 @@ task.pattern = 'test/**/*_test.rb' task.warning = true end Reek::Rake::Task.new do |task| - task.config_file = 'config/reek.yml' task.fail_on_error = false end RuboCop::RakeTask.new do |task| task.options << '--display-cop-names' + if Gem.loaded_specs['rubocop'].version > Gem::Version.create('0.31.0') + fail 'remove Performance/Sample exclusion from .rubocop.yml' + end end