mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-25 19:48:48 +01:00
It's basically a set of rspec macro allowing you to write thing such as `it_should_find_and_assign :users'. See <http://github.com/rsl/skinny_spec/tree/master> for more informations. It's recommended to install the `ruby2ruby' gem to have nicer error messages, but it is not required to work. @@ update README_FOR_DEVELOPERS accordingly.
11 lines
No EOL
330 B
Ruby
11 lines
No EOL
330 B
Ruby
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 |