From ea6f12eebc7b86fd085cd058d24fd0613a110c79 Mon Sep 17 00:00:00 2001 From: Robert Gleeson Date: Mon, 3 Feb 2014 14:55:33 +0100 Subject: [PATCH] remove 1.8-compatibility hack from Rakefile. --- Rakefile | 9 --------- 1 file changed, 9 deletions(-) diff --git a/Rakefile b/Rakefile index c427a5e7..6bc2c58d 100644 --- a/Rakefile +++ b/Rakefile @@ -21,15 +21,6 @@ end desc "Set up and run tests" task :default => [:test] -unless [].respond_to? :shuffle! - class Array - def shuffle! - # TODO: fill this in if anyone cares - self - end - end -end - def run_specs paths quiet = ENV['VERBOSE'] ? '' : '-q' exec "bacon -Ispec -rubygems #{quiet} #{paths.join ' '}"