diff options
author | Guillermo Iguaran <guilleiguaran@gmail.com> | 2014-08-31 14:14:48 -0500 |
---|---|---|
committer | Guillermo Iguaran <guilleiguaran@gmail.com> | 2014-08-31 14:14:48 -0500 |
commit | eb8f58d36b0ff91e69ff09c32e9b5c319405da4e (patch) | |
tree | f28a2253acd3bc0842df90f4c76f9bfcc3bd31ca | |
parent | eb8aa4d9fb6d2d2dc196b527d16f2564bcb1ce8e (diff) | |
parent | fc23ff64f817908cf0b598b28468c6840abca9f7 (diff) | |
download | rails-eb8f58d36b0ff91e69ff09c32e9b5c319405da4e.tar.gz rails-eb8f58d36b0ff91e69ff09c32e9b5c319405da4e.tar.bz2 rails-eb8f58d36b0ff91e69ff09c32e9b5c319405da4e.zip |
Merge pull request #16747 from rsutphin/web-console-gemfile-comment
Clarify that /console is an optional feature
-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 |