Sha256: 965fc79e4acc17fee025366affe2e2716f0cb9843ebe92ff24abda83d19e48ab

Contents?: true

Size: 497 Bytes

Versions: 54

Compression:

Stored size: 497 Bytes

Contents

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.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    = 'XmlNode'
  rdoc.options << '--line-numbers --inline-source'
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

54 entries across 54 versions & 6 rubygems

Version Path
active_shipping-0.9.7 lib/vendor/xml_node/Rakefile
active_shipping-0.9.6 lib/vendor/xml_node/Rakefile
active_shipping-0.9.5 lib/vendor/xml_node/Rakefile
active_shipping-0.9.4 lib/vendor/xml_node/Rakefile
active_shipping-0.9.3 lib/vendor/xml_node/Rakefile
active_shipping-0.9.2 lib/vendor/xml_node/Rakefile
active_shipping-0.9.1 lib/vendor/xml_node/Rakefile
active_shipping-0.1.4 lib/vendor/xml_node/Rakefile
active_shipping-0.1.3 lib/vendor/xml_node/Rakefile
active_shipping-0.1.2 lib/vendor/xml_node/Rakefile
active_shipping-0.1.1 lib/vendor/xml_node/Rakefile
active_shipping-0.1.0 lib/vendor/xml_node/Rakefile
active_shipping-0.0.2 lib/vendor/xml_node/Rakefile
active_shipping-0.0.1 lib/vendor/xml_node/Rakefile