diff options
Diffstat (limited to 'railties/fresh_rakefile')
-rwxr-xr-x | railties/fresh_rakefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/fresh_rakefile b/railties/fresh_rakefile index cdeb0788e1..6f3cc61ae5 100755 --- a/railties/fresh_rakefile +++ b/railties/fresh_rakefile @@ -71,7 +71,7 @@ Rake::RDocTask.new("appdoc") { |rdoc| desc "Generate documentation for the Rails framework" Rake::RDocTask.new("apidoc") { |rdoc| rdoc.rdoc_dir = 'doc/api' - rdoc.template = 'jamis.rb' if ENV['template'] == 'jamis' + rdoc.template = "#{ENV['template']}.rb" if ENV['template'] rdoc.title = "Rails Framework Documentation" rdoc.options << '--line-numbers --inline-source' rdoc.rdoc_files.include('README') |