diff options
author | Santiago Pastorino <santiago@wyeworks.com> | 2012-01-03 08:03:47 -0800 |
---|---|---|
committer | Santiago Pastorino <santiago@wyeworks.com> | 2012-01-03 14:05:27 -0200 |
commit | ca24ee75af46f153d6d689f416c0850e34e32efd (patch) | |
tree | 64607144b2b0e3deb848880ab277575e4434dcce /Rakefile | |
parent | c032ff6e3ccf2890c5f404a1243b966f25737117 (diff) | |
download | rails-ca24ee75af46f153d6d689f416c0850e34e32efd.tar.gz rails-ca24ee75af46f153d6d689f416c0850e34e32efd.tar.bz2 rails-ca24ee75af46f153d6d689f416c0850e34e32efd.zip |
Merge pull request #4278 from kennyj/fix_rdoc_generating_problem
Use -e option instead of -c option (rake rdoc task).
Diffstat (limited to 'Rakefile')
-rwxr-xr-x | Rakefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -94,7 +94,7 @@ RDoc::Task.new do |rdoc| rdoc.options << '-f' << 'sdoc' rdoc.options << '-T' << 'rails' - rdoc.options << '-c' << 'utf-8' + rdoc.options << '-e' << 'UTF-8' rdoc.options << '-g' # SDoc flag, link methods to GitHub rdoc.options << '-m' << RDOC_MAIN |