Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

Ticket #3563: update_appdoc_for_rake_0.7.0.patch

File update_appdoc_for_rake_0.7.0.patch, 0.6 kB (added by adam.greenfield@site5.com, 3 years ago)
  • railties/lib/tasks/documentation.rake

    old new  
    22Rake::RDocTask.new("appdoc") { |rdoc| 
    33  rdoc.rdoc_dir = 'doc/app' 
    44  rdoc.title    = "Rails Application Documentation" 
    5   rdoc.options << '--line-numbers --inline-source' 
     5  rdoc.options << '--line-numbers' << '--inline-source' 
    66  rdoc.rdoc_files.include('doc/README_FOR_APP') 
    77  rdoc.rdoc_files.include('app/**/*.rb') 
    88}