public
Description: A Rails plugin to implement interview-style workflows in a controller.
Homepage:
Clone URL: git://github.com/seancribbs/restful_workflow.git
Loren Johnson (author)
Sat May 03 17:02:13 -0700 2008
commit  3b6ab16ce4f5aa220714d3beecb47d369df80a28
tree    902d36474679bc3594f9836f828f7c402118f0af
parent  649c73694fed4218b0a183e31c2a08b3018abe85 parent  79202da1ca7ad07f162a82f3874174a441951899
restful_workflow / Rakefile
100644 23 lines (19 sloc) 0.567 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'
 
desc 'Default: run unit tests.'
task :default => :test
 
desc 'Test the restful_workflow plugin.'
Rake::TestTask.new(:test) do |t|
  t.libs << 'lib'
  t.pattern = 'test/**/*_test.rb'
  t.verbose = true
end
 
desc 'Generate documentation for the restful_workflow plugin.'
Rake::RDocTask.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = 'RestfulWorkflow'
  rdoc.options << '--line-numbers' << '--inline-source'
  rdoc.rdoc_files.include('README')
  rdoc.rdoc_files.include('lib/**/*.rb')
end