public
Description: Skinny Spec is a collection of Rspec helper methods designed to help trim the fat and DRY up some of the bloat that sometimes results from properly specing your classes and templates.
Homepage:
Clone URL: git://github.com/rsl/skinny_spec.git
Vitaly Kushner (author)
Thu Apr 02 16:26:34 -0700 2009
rsl (committer)
Mon May 18 07:06:32 -0700 2009
skinny_spec / Rakefile
100644 11 lines (10 sloc) 0.33 kb
1
2
3
4
5
6
7
8
9
10
11
require 'rake'
require 'rake/rdoctask'
 
desc 'Generate documentation for the Skinny Spec plugin'
Rake::RDocTask.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'doc'
  rdoc.title = 'Skinny Spec'
  rdoc.options << '--line-numbers' << '--inline-source'
  rdoc.rdoc_files.include('README.rdoc')
  rdoc.rdoc_files.include('lib/**/*.rb')
end