tracks/vendor/plugins/scenarios/Rakefile
Simon Rozet b13df20630 Install the `scenarios' plugin and require it in spec_helper
It is IMO a great alternative to fixtures.
See http://github.com/aiwilliams/scenarios/tree/master and further commits
for more information.
2008-06-23 21:34:21 +02:00

10 lines
No EOL
309 B
Ruby

require File.expand_path(File.dirname(__FILE__) + '/testing/plugit_descriptor')
require 'rake/rdoctask'
Rake::RDocTask.new(:doc) do |r|
r.title = "Rails Scenarios Plugin"
r.main = "README"
r.options << "--line-numbers"
r.rdoc_files.include("README", "LICENSE", "lib/**/*.rb")
r.rdoc_dir = "doc"
end