summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorraggi <jftucker@gmail.com>2011-05-02 22:27:10 -0700
committerraggi <jftucker@gmail.com>2011-05-02 22:27:10 -0700
commita108671f4de141fca75a8103b97488cae98db8c7 (patch)
tree734499465d95d76439747f7828325022f414c722 /Rakefile
parentbfd95a6005a87d864bcecd69951c892d80575554 (diff)
downloadrack-a108671f4de141fca75a8103b97488cae98db8c7.tar.gz
1.9 not having '.' in load path
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index 2ed002d3..d16f5d04 100644
--- a/Rakefile
+++ b/Rakefile
@@ -78,7 +78,7 @@ desc "Run all the tests"
task :fulltest => %w[SPEC chmod] do
opts = ENV['TEST'] || '-a'
specopts = ENV['TESTOPTS'] || '-q'
- sh "bacon -rtest/gemloader -I./lib:./test -w #{opts} #{specopts}"
+ sh "bacon -r./test/gemloader -I./lib:./test -w #{opts} #{specopts}"
end
task :gem => ["SPEC"] do