Sha256: 0917dc1dbe4d3185947225b67ecda171f9e2195e3ae17c0b2c48fe14c763c41c

Contents?: true

Size: 557 Bytes

Versions: 27

Compression:

Stored size: 557 Bytes

Contents

require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'

desc 'Default: run unit tests.'
task :default => :test

desc 'Test the find_by_param plugin.'
Rake::TestTask.new(:test) do |t|
  t.libs << 'lib'
  t.pattern = 'test/**/*_test.rb'
  t.verbose = true
end

desc 'Generate documentation for the find_by_param plugin.'
Rake::RDocTask.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title    = 'FindByParam'
  rdoc.options << '--line-numbers' << '--inline-source'
  rdoc.rdoc_files.include('README')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

27 entries across 27 versions & 3 rubygems

Version Path
kdmny-spree-0.0.1 vendor/plugins/find_by_param/Rakefile
spree-0.11.2 vendor/plugins/find_by_param/Rakefile
spree-0.11.1 vendor/plugins/find_by_param/Rakefile
spree-0.11.0 vendor/plugins/find_by_param/Rakefile
spree-0.10.2 vendor/plugins/find_by_param/Rakefile
spree-0.10.1 vendor/plugins/find_by_param/Rakefile
spree-0.10.0 vendor/plugins/find_by_param/Rakefile
spree-0.10.0.beta vendor/plugins/find_by_param/Rakefile
spree-enriquez-0.9.4 vendor/plugins/find_by_param/Rakefile
spree-0.9.4 vendor/plugins/find_by_param/Rakefile
spree-0.9.3 vendor/plugins/find_by_param/Rakefile
spree-0.9.2 vendor/plugins/find_by_param/Rakefile
spree-0.9.1 vendor/plugins/find_by_param/Rakefile
spree-0.9.0 vendor/plugins/find_by_param/Rakefile
spree-0.8.4 vendor/plugins/find_by_param/Rakefile
spree-0.8.5 vendor/plugins/find_by_param/Rakefile
spree-0.4.0 vendor/plugins/find_by_param/Rakefile
spree-0.4.1 vendor/plugins/find_by_param/Rakefile
spree-0.5.0 vendor/plugins/find_by_param/Rakefile
spree-0.5.1 vendor/plugins/find_by_param/Rakefile