summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorSeth Vargo <sethvargo@gmail.com>2013-05-17 00:54:58 -0400
committerSeth Vargo <sethvargo@gmail.com>2013-05-19 18:09:04 -0500
commit2e787496842b5d8db2df79f138f31172ef465db6 (patch)
treebd37646484745cd1280a7172ea63641312077214 /Rakefile
parent966b1367cddd6cf5d39db42e07f866b74baa42e8 (diff)
downloadchef-zero-2e787496842b5d8db2df79f138f31172ef465db6.tar.gz
Don't shell out - it saves time
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index b506dfc..dacdabc 100644
--- a/Rakefile
+++ b/Rakefile
@@ -15,5 +15,5 @@ RDoc::Task.new do |rdoc|
end
task :test do
- sh "ruby spec/run.rb"
+ require_relative 'spec/run'
end