summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorRobert Gleeson <rob@flowof.info>2014-02-03 14:55:33 +0100
committerRobert Gleeson <rob@flowof.info>2014-02-03 14:55:33 +0100
commitea6f12eebc7b86fd085cd058d24fd0613a110c79 (patch)
treef1f752530ef2dc1778d69ebc1516b4702ef30f1f /Rakefile
parente054af74687de15a48dc99a52ad3ab06ba8a92aa (diff)
downloadpry-ea6f12eebc7b86fd085cd058d24fd0613a110c79.tar.gz
remove 1.8-compatibility hack from Rakefile.
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile9
1 files changed, 0 insertions, 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 ' '}"