summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorSeth Vargo <sethvargo@gmail.com>2013-05-17 00:57:22 -0400
committerSeth Vargo <sethvargo@gmail.com>2013-05-19 18:09:04 -0500
commit4320203e961bdde6c1f19112dd8af4b7d66c9256 (patch)
treee83aea48dac5243e9a32cff1275b0013a65d62df /Rakefile
parentc2a2e7feb4ab2c2acc08d88e8efc2b079f4f5dd5 (diff)
downloadchef-zero-4320203e961bdde6c1f19112dd8af4b7d66c9256.tar.gz
Use spec instead of test as the task
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Rakefile b/Rakefile
index b506dfc..78705b6 100644
--- a/Rakefile
+++ b/Rakefile
@@ -14,6 +14,6 @@ RDoc::Task.new do |rdoc|
rdoc.rdoc_files.include('lib/**/*.rb')
end
-task :test do
- sh "ruby spec/run.rb"
+task :spec do
+ sh 'ruby spec/run.rb'
end