Sha256: 1ba58b2dc63ef630310e61b9a266d2d79342d282bcd8812aeaf636e1f44abc74

Contents?: true

Size: 599 Bytes

Versions: 8

Compression:

Stored size: 599 Bytes

Contents

require "bundler/gem_tasks"
require 'rake'
require 'rake/testtask'
require 'rdoc/task'

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

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

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
act_with_bag-0.4.9.1 Rakefile
act_with_bag-0.5.3 Rakefile
act_with_bag-0.5.2 Rakefile
act_with_bag-0.5.1 Rakefile
act_with_bag-0.4.9 Rakefile
act_with_bag-0.4.7 Rakefile
act_with_bag-0.4.4 Rakefile
act_with_bag-0.4.2 Rakefile