Sha256: 5e44db67cabc2420dfe030fbfcf4e800defaa5b9d903a61c049e2f782258c910

Contents?: true

Size: 611 Bytes

Versions: 20

Compression:

Stored size: 611 Bytes

Contents

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

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

desc 'Test the option_tags_with_disabled 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 option_tags_with_disabled plugin.'
Rake::RDocTask.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title    = 'OptionTagsWithDisabled'
  rdoc.options << '--line-numbers' << '--inline-source'
  rdoc.rdoc_files.include('README')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

20 entries across 20 versions & 3 rubygems

Version Path
kdmny-spree-0.0.1 lib/plugins/option_tags_with_disable/Rakefile
spree-0.11.2 lib/plugins/option_tags_with_disable/Rakefile
spree-0.11.1 lib/plugins/option_tags_with_disable/Rakefile
spree-0.11.0 lib/plugins/option_tags_with_disable/Rakefile
spree-0.10.2 lib/plugins/option_tags_with_disable/Rakefile
spree-0.10.1 lib/plugins/option_tags_with_disable/Rakefile
spree-0.10.0 lib/plugins/option_tags_with_disable/Rakefile
spree-0.10.0.beta lib/plugins/option_tags_with_disable/Rakefile
spree-enriquez-0.9.4 lib/plugins/option_tags_with_disable/Rakefile
spree-0.9.4 lib/plugins/option_tags_with_disable/Rakefile
spree-0.9.3 lib/plugins/option_tags_with_disable/Rakefile
spree-0.9.2 lib/plugins/option_tags_with_disable/Rakefile
spree-0.9.1 lib/plugins/option_tags_with_disable/Rakefile
spree-0.9.0 lib/plugins/option_tags_with_disable/Rakefile
spree-0.8.4 lib/plugins/option_tags_with_disable/Rakefile
spree-0.8.5 lib/plugins/option_tags_with_disable/Rakefile
spree-0.8.0 lib/plugins/option_tags_with_disable/Rakefile
spree-0.8.1 lib/plugins/option_tags_with_disable/Rakefile
spree-0.8.2 lib/plugins/option_tags_with_disable/Rakefile
spree-0.8.3 lib/plugins/option_tags_with_disable/Rakefile