summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorJohn Mair <jrmair@gmail.com>2012-12-07 01:52:37 +0100
committerJohn Mair <jrmair@gmail.com>2012-12-07 21:41:05 +0100
commit31a9578228ce53bc695b49c4f193e66bcd9213cc (patch)
tree54347baf6a33d38051994a34b05a1232ef05cd77 /Rakefile
parentd65e5c890132ee9c66420dbc624f878cbbb61bd8 (diff)
downloadpry-31a9578228ce53bc695b49c4f193e66bcd9213cc.tar.gz
cleaned up lib/pry/test/helper.rb
* removed most historicla junk from lib/pry/test/helper.rb * relocated recalcitrant junk to the local spec/helper.rb (this isn't exposed to 3rd parties)
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index 412e9b16..62e804cb 100644
--- a/Rakefile
+++ b/Rakefile
@@ -49,7 +49,7 @@ task :test do
check_dependencies unless ENV['SKIP_DEP_CHECK']
all_specs = Dir['spec/**/*_spec.rb']
all_specs.shuffle! if all_specs.respond_to? :shuffle!
- system "bacon -Ilib/pry/test -Ispec -rubygems -a -q #{all_specs.join ' '}"
+ system "bacon -Ispec -rubygems -a -q #{all_specs.join ' '}"
end
task :spec => :test