Documentation generated for a Rails application by rake doc:app
gets a default title of "Rails Application Documentation". The Rake sets this:
rdoc.title = ENV['title'] || "Rails Application Documentation"
I can change this by doing
$ title='some other title' rake doc:app
However, I would like to set this in, say, application.rb
or environment'rb
but this doesn't appear to work.
Where should I set the title for RDoc in a Rails application ?