Rakefile in ruby_protobuf-0.4.6 vs Rakefile in ruby_protobuf-0.4.7
- old
+ new
@@ -18,24 +18,24 @@
puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
end
require 'rake/testtask'
Rake::TestTask.new(:test) do |test|
- test.libs << 'lib' << 'test'
+ test.libs << 'test:.'
test.pattern = 'test/**/test_*.rb'
test.verbose = true
end
begin
require 'rcov/rcovtask'
Rcov::RcovTask.new do |test|
- test.libs << 'test'
+ test.libs << 'test:.'
test.pattern = 'test/**/test_*.rb'
test.verbose = true
end
rescue LoadError
task :rcov do
- abort "RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov"
+ abort "RCov is not available. In order to run rcov, you must: sudo gem install rcov"
end
end
task :test => :check_dependencies