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

Changeset 3451

Show
Ignore:
Timestamp:
01/21/06 23:14:10 (3 years ago)
Author:
david
Message:

Fixed documentation tasks to work with Rake 0.7.0 (closes #3563) [kazuhiko@fdiary.net]

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/railties/CHANGELOG

    r3436 r3451  
    11*SVN* 
     2 
     3* Fixed documentation tasks to work with Rake 0.7.0 #3563 [kazuhiko@fdiary.net] 
    24 
    35* Update to Prototype 1.5.0_pre0 [Sam Stephenson] 
  • trunk/railties/lib/tasks/documentation.rake

    r3069 r3451  
    1717    options << "-o doc/plugins/#{plugin}" 
    1818    options << "--title '#{plugin.titlecase} Plugin Documentation'" 
    19     options << '--line-numbers --inline-source' 
     19    options << '--line-numbers' << '--inline-source' 
    2020    options << '-T html' 
    2121 
     
    4646  rdoc.template = "#{ENV['template']}.rb" if ENV['template'] 
    4747  rdoc.title    = "Rails Framework Documentation" 
    48   rdoc.options << '--line-numbers --inline-source' 
     48  rdoc.options << '--line-numbers' << '--inline-source' 
    4949  rdoc.rdoc_files.include('README') 
    5050  rdoc.rdoc_files.include('vendor/rails/railties/CHANGELOG')