aboutsummaryrefslogtreecommitdiffstats
path: root/Rakefile
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2012-01-03 08:03:47 -0800
committerSantiago Pastorino <santiago@wyeworks.com>2012-01-03 14:05:27 -0200
commitca24ee75af46f153d6d689f416c0850e34e32efd (patch)
tree64607144b2b0e3deb848880ab277575e4434dcce /Rakefile
parentc032ff6e3ccf2890c5f404a1243b966f25737117 (diff)
downloadrails-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-xRakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index 831187d5f5..03b8a952c3 100755
--- a/Rakefile
+++ b/Rakefile
@@ -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