aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArun Agrawal <arunagw@gmail.com>2011-11-09 09:59:17 +0530
committerArun Agrawal <arunagw@gmail.com>2011-11-09 11:54:07 +0530
commitf642724f27af5b16290f56795563eaa194e20301 (patch)
treeb39b349c46e477f85b9e50e6daf1d88dd1281ce8
parent2843d3b2775e0e4d31f3269b12fcf832c4c27421 (diff)
downloadrails-f642724f27af5b16290f56795563eaa194e20301.tar.gz
rails-f642724f27af5b16290f56795563eaa194e20301.tar.bz2
rails-f642724f27af5b16290f56795563eaa194e20301.zip
CHANGELOG => CHANGELOG.md
I missed these in previous commit
-rw-r--r--railties/lib/rails/tasks/documentation.rake4
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/lib/rails/tasks/documentation.rake b/railties/lib/rails/tasks/documentation.rake
index 2072a2b947..1e7da5ccae 100644
--- a/railties/lib/rails/tasks/documentation.rake
+++ b/railties/lib/rails/tasks/documentation.rake
@@ -96,13 +96,13 @@ namespace :doc do
end
gem_path('activesupport') do |activesupport|
- %w(README.rdoc CHANGELOG lib/active_support/**/*.rb).each do |file|
+ %w(README.rdoc CHANGELOG.md lib/active_support/**/*.rb).each do |file|
rdoc.rdoc_files.include("#{activesupport}/#{file}")
end
end
gem_path('railties') do |railties|
- %w(README.rdoc CHANGELOG lib/{*.rb,commands/*.rb,generators/*.rb}).each do |file|
+ %w(README.rdoc CHANGELOG.md lib/{*.rb,commands/*.rb,generators/*.rb}).each do |file|
rdoc.rdoc_files.include("#{railties}/#{file}")
end
end