Skip to content

Commit

Permalink
Fixed that rake doc:app should use UTF-8 (closes #8906) [farzy]
Browse files Browse the repository at this point in the history
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7555 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
  • Loading branch information
dhh committed Sep 22, 2007
1 parent 0f3d870 commit f18c24c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions railties/CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
*SVN*

* Fixed that rake doc:app should use UTF-8 #8906 [farzy]

* Fixes rake annotations to search erb and builder files as well #9150 [m.langenberg]

* Removed web_service generator [Koz]
Expand Down
3 changes: 2 additions & 1 deletion railties/lib/tasks/documentation.rake
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ namespace :doc do
rdoc.rdoc_dir = 'doc/app'
rdoc.title = "Rails Application Documentation"
rdoc.options << '--line-numbers' << '--inline-source'
rdoc.options << '--charset' << 'utf-8'
rdoc.rdoc_files.include('doc/README_FOR_APP')
rdoc.rdoc_files.include('app/**/*.rb')
rdoc.rdoc_files.include('lib/**/*.rb')
Expand Down Expand Up @@ -69,4 +70,4 @@ namespace :doc do
end
end
end
end
end

0 comments on commit f18c24c

Please sign in to comment.