diff options
author | Steve Richert <steve.richert@gmail.com> | 2011-12-09 16:49:29 -0500 |
---|---|---|
committer | Steve Richert <steve.richert@gmail.com> | 2011-12-09 17:00:37 -0500 |
commit | 5c60b44837cd52855b0082c73f8e7af051ba0550 (patch) | |
tree | a91035732ddb4578ad254edcd229aaa0433369dc | |
parent | 866d2dbd8786a29a61c3b11c1b052eede7b03ab1 (diff) | |
download | rails-5c60b44837cd52855b0082c73f8e7af051ba0550.tar.gz rails-5c60b44837cd52855b0082c73f8e7af051ba0550.tar.bz2 rails-5c60b44837cd52855b0082c73f8e7af051ba0550.zip |
Add the .rdoc extension to the README that Rails generates for a new application
-rw-r--r-- | railties/lib/rails/generators/rails/app/app_generator.rb | 2 | ||||
-rw-r--r-- | railties/test/generators/actions_test.rb | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/railties/lib/rails/generators/rails/app/app_generator.rb b/railties/lib/rails/generators/rails/app/app_generator.rb index 3e32f758a4..2a6bd57df4 100644 --- a/railties/lib/rails/generators/rails/app/app_generator.rb +++ b/railties/lib/rails/generators/rails/app/app_generator.rb @@ -38,7 +38,7 @@ module Rails end def readme - copy_file "README" + copy_file "README", "README.rdoc" end def gemfile diff --git a/railties/test/generators/actions_test.rb b/railties/test/generators/actions_test.rb index c1fd6a38f1..ee288871de 100644 --- a/railties/test/generators/actions_test.rb +++ b/railties/test/generators/actions_test.rb @@ -114,7 +114,7 @@ class ActionsTest < Rails::Generators::TestCase action :gem_group, :test do gem 'fakeweb' end - + assert_file 'Gemfile', /\ngroup :development, :test do\n gem "rspec-rails"\nend\n\ngroup :test do\n gem "fakeweb"\nend/ end @@ -233,14 +233,14 @@ class ActionsTest < Rails::Generators::TestCase def test_readme run_generator Rails::Generators::AppGenerator.expects(:source_root).times(2).returns(destination_root) - assert_match(/Welcome to Rails/, action(:readme, "README")) + assert_match(/Welcome to Rails/, action(:readme, "README.rdoc")) end def test_readme_with_quiet generator(default_arguments, :quiet => true) run_generator Rails::Generators::AppGenerator.expects(:source_root).times(2).returns(destination_root) - assert_no_match(/Welcome to Rails/, action(:readme, "README")) + assert_no_match(/Welcome to Rails/, action(:readme, "README.rdoc")) end def test_log |