diff options
author | schneems <richard.schneeman@gmail.com> | 2012-09-24 22:51:11 -0500 |
---|---|---|
committer | schneems <richard.schneeman@gmail.com> | 2012-09-24 22:51:11 -0500 |
commit | bfafa999ddaa203224ac0222203517a0d2a3f6bf (patch) | |
tree | 33e4d75f4564c35f1ccfdb68bffaf91d2cb11af5 | |
parent | 150561779d3231c21add60936e14d7177997da13 (diff) | |
download | rails-bfafa999ddaa203224ac0222203517a0d2a3f6bf.tar.gz rails-bfafa999ddaa203224ac0222203517a0d2a3f6bf.tar.bz2 rails-bfafa999ddaa203224ac0222203517a0d2a3f6bf.zip |
add documentation to generated routes
Mention that in addition to `rake routes` a developer can also visit `/rails/info/routes` in the browser.
-rw-r--r-- | guides/code/getting_started/config/routes.rb | 3 | ||||
-rw-r--r-- | railties/lib/rails/generators/rails/app/templates/config/routes.rb | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/guides/code/getting_started/config/routes.rb b/guides/code/getting_started/config/routes.rb index 04a6bd374e..724edf4727 100644 --- a/guides/code/getting_started/config/routes.rb +++ b/guides/code/getting_started/config/routes.rb @@ -55,7 +55,8 @@ Blog::Application.routes.draw do # just remember to delete public/index.html. root :to => "welcome#index" - # See how all your routes lay out with "rake routes" + # See how all your routes lay out by running `$ rake routes` + # or by visiting `/rails/info/routes` in your browser # This is a legacy wild controller route that's not recommended for RESTful applications. # Note: This route will make all actions in every controller accessible via GET requests. diff --git a/railties/lib/rails/generators/rails/app/templates/config/routes.rb b/railties/lib/rails/generators/rails/app/templates/config/routes.rb index f6b1ef1feb..1b32629465 100644 --- a/railties/lib/rails/generators/rails/app/templates/config/routes.rb +++ b/railties/lib/rails/generators/rails/app/templates/config/routes.rb @@ -51,5 +51,6 @@ # end - # See how all your routes lay out with "rake routes". + # See how all your routes lay out by running `$ rake routes` + # or by visiting `/rails/info/routes` in your browser end |