Rakefile in carrot-0.8.0 vs Rakefile in carrot-0.8.1
- old
+ new
@@ -10,18 +10,20 @@
s.email = "amos@geni.com"
s.homepage = "http://github.com/famoseagle/carrot"
s.description = "A synchronous version of the ruby amqp client"
s.summary = "A synchronous version of the ruby amqp client"
s.authors = ["Amos Elliston"]
+ s.add_development_dependency "rcov"
+ s.add_development_dependency "mocha"
end
Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end
Rake::TestTask.new do |t|
- t.libs << 'lib'
+ t.libs << ['lib', 'test']
t.pattern = 'test/**/*_test.rb'
t.verbose = false
end
Rake::RDocTask.new do |rdoc|
@@ -31,10 +33,10 @@
rdoc.rdoc_files.include('README*')
rdoc.rdoc_files.include('lib/**/*.rb')
end
Rcov::RcovTask.new do |t|
- t.libs << 'test'
+ t.libs << ['lib', 'test']
t.test_files = FileList['test/**/*_test.rb']
t.verbose = true
end
task :default => :test