Adding .rdoc to README just to see github's rendering.

This commit is contained in:
Scott Barron 2008-03-13 13:10:28 -04:00
parent d3f97d2edf
commit ba3b99ff1b
2 changed files with 2 additions and 2 deletions

View File

View File

@ -32,8 +32,8 @@ rd = Rake::RDocTask.new(:rdoc) do |rdoc|
rdoc.template = 'doc/jamis.rb'
rdoc.rdoc_dir = 'rdoc'
rdoc.title = 'AASM'
rdoc.options << '--line-numbers' << '--inline-source' << '--main' << 'README' << '--title' << 'AASM'
rdoc.rdoc_files.include('README', 'MIT-LICENSE', 'TODO', 'CHANGELOG')
rdoc.options << '--line-numbers' << '--inline-source' << '--main' << 'README.rdoc' << '--title' << 'AASM'
rdoc.rdoc_files.include('README.rdoc', 'MIT-LICENSE', 'TODO', 'CHANGELOG')
rdoc.rdoc_files.include('lib/**/*.rb', 'doc/**/*.rdoc')
end