summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorJohn Keiser <jkeiser@opscode.com>2011-08-25 12:17:07 -0700
committerJohn Keiser <jkeiser@opscode.com>2011-08-25 12:17:07 -0700
commit590c99dbb969c145f94add975d8567038c5bb34a (patch)
tree03021319973950da11b5315f9f08189f471764a7 /Rakefile
parentb5e8461d94318668a39ac965fa6911cde14b2a66 (diff)
downloadmixlib-cli-590c99dbb969c145f94add975d8567038c5bb34a.tar.gz
Update rakefile to work with ruby 1.9.2
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Rakefile b/Rakefile
index 1dcfaed..6542ee5 100644
--- a/Rakefile
+++ b/Rakefile
@@ -22,13 +22,13 @@ begin
end
rescue LoadError
task :spec do
- abort "RSpec 2.0+ is not available. (sudo) install rspec."
+ abort "RSpec 2.0+ is not available. (sudo) gem install rspec."
end
end
task :default => :spec
-require 'rake/rdoctask'
+require 'rdoc/task'
Rake::RDocTask.new do |rdoc|
if File.exist?('VERSION.yml')
require 'yaml'