diff options
author | Rhett Sutphin <rhett@detailedbalance.net> | 2014-08-29 16:36:33 -0500 |
---|---|---|
committer | Rhett Sutphin <rhett@detailedbalance.net> | 2014-08-31 13:15:13 -0500 |
commit | fc23ff64f817908cf0b598b28468c6840abca9f7 (patch) | |
tree | f28a2253acd3bc0842df90f4c76f9bfcc3bd31ca /railties/lib | |
parent | eb8aa4d9fb6d2d2dc196b527d16f2564bcb1ce8e (diff) | |
download | rails-fc23ff64f817908cf0b598b28468c6840abca9f7.tar.gz rails-fc23ff64f817908cf0b598b28468c6840abca9f7.tar.bz2 rails-fc23ff64f817908cf0b598b28468c6840abca9f7.zip |
Since /console is an optional feature, mention <%= console %> instead.
(/console is not mounted by default with web-console 2.0.)
Diffstat (limited to 'railties/lib')
-rw-r--r-- | railties/lib/rails/generators/rails/app/templates/Gemfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/lib/rails/generators/rails/app/templates/Gemfile b/railties/lib/rails/generators/rails/app/templates/Gemfile index 72143301a6..1a8e863ef1 100644 --- a/railties/lib/rails/generators/rails/app/templates/Gemfile +++ b/railties/lib/rails/generators/rails/app/templates/Gemfile @@ -33,7 +33,7 @@ group :development, :test do gem 'byebug' <%- end -%> - # Access an IRB console on exceptions page and /console in development + # Access an IRB console on each exception page or by using <%%= console %> in any view gem 'web-console', '~> 2.0.0.beta2' <%- if spring_install? %> # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring |