Changeset 3451
- Timestamp:
- 01/21/06 23:14:10 (3 years ago)
- Files:
-
- trunk/railties/CHANGELOG (modified) (1 diff)
- trunk/railties/lib/tasks/documentation.rake (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/railties/CHANGELOG
r3436 r3451 1 1 *SVN* 2 3 * Fixed documentation tasks to work with Rake 0.7.0 #3563 [kazuhiko@fdiary.net] 2 4 3 5 * Update to Prototype 1.5.0_pre0 [Sam Stephenson] trunk/railties/lib/tasks/documentation.rake
r3069 r3451 17 17 options << "-o doc/plugins/#{plugin}" 18 18 options << "--title '#{plugin.titlecase} Plugin Documentation'" 19 options << '--line-numbers --inline-source'19 options << '--line-numbers' << '--inline-source' 20 20 options << '-T html' 21 21 … … 46 46 rdoc.template = "#{ENV['template']}.rb" if ENV['template'] 47 47 rdoc.title = "Rails Framework Documentation" 48 rdoc.options << '--line-numbers --inline-source'48 rdoc.options << '--line-numbers' << '--inline-source' 49 49 rdoc.rdoc_files.include('README') 50 50 rdoc.rdoc_files.include('vendor/rails/railties/CHANGELOG')