Sha256: f83de3d3f87e5f37ba96aaef641e825f651c7f095387b697c410a12ff3efcc19

Contents?: true

Size: 594 Bytes

Versions: 24

Compression:

Stored size: 594 Bytes

Contents

require 'rake'
require "load_multi_rails_rake_tasks" 
require 'rake/testtask'
require 'rake/rdoctask'

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

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

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

Version data entries

24 entries across 24 versions & 4 rubygems

Version Path
giraffesoft-attribute_fu-0.2.1 Rakefile
kdmny-spree-0.0.1 vendor/plugins/attribute_fu/Rakefile
spree-0.11.2 vendor/plugins/attribute_fu/Rakefile
spree-0.11.1 vendor/plugins/attribute_fu/Rakefile
spree-0.11.0 vendor/plugins/attribute_fu/Rakefile
spree-0.10.2 vendor/plugins/attribute_fu/Rakefile
spree-0.10.1 vendor/plugins/attribute_fu/Rakefile
spree-0.10.0 vendor/plugins/attribute_fu/Rakefile
spree-0.10.0.beta vendor/plugins/attribute_fu/Rakefile
spree-enriquez-0.9.4 vendor/plugins/attribute_fu/Rakefile
spree-0.9.4 vendor/plugins/attribute_fu/Rakefile
spree-0.9.3 vendor/plugins/attribute_fu/Rakefile
spree-0.9.2 vendor/plugins/attribute_fu/Rakefile
spree-0.9.1 vendor/plugins/attribute_fu/Rakefile
spree-0.9.0 vendor/plugins/attribute_fu/Rakefile
spree-0.8.4 vendor/plugins/attribute_fu/Rakefile
spree-0.8.5 vendor/plugins/attribute_fu/Rakefile
spree-0.6.0 vendor/plugins/attribute_fu/Rakefile
spree-0.7.0 vendor/plugins/attribute_fu/Rakefile
spree-0.7.1 vendor/plugins/attribute_fu/Rakefile