lib/vendor/quantified/Rakefile in active_shipping-0.10.0 vs lib/vendor/quantified/Rakefile in active_shipping-0.10.1
- old
+ new
@@ -1,21 +1,13 @@
require 'rake'
require 'rake/testtask'
-require 'rake/rdoctask'
desc 'Default: run unit tests.'
task :default => :test
desc 'Test the plugin.'
Rake::TestTask.new(:test) do |t|
t.libs << 'lib'
+ t.libs << 'test'
t.pattern = 'test/**/*_test.rb'
t.verbose = true
-end
-
-desc 'Generate documentation for the calculations plugin.'
-Rake::RDocTask.new(:rdoc) do |rdoc|
- rdoc.rdoc_dir = 'rdoc'
- rdoc.title = 'Quantified'
- rdoc.options << '--line-numbers --inline-source'
- rdoc.rdoc_files.include('lib/**/*.rb')
end