diff options
author | Kasper Timm Hansen <kaspth@gmail.com> | 2016-03-08 16:43:13 +0100 |
---|---|---|
committer | Kasper Timm Hansen <kaspth@gmail.com> | 2016-03-08 16:43:13 +0100 |
commit | 6ef5c64ab8353fd82fc13989e07cda86da5a1efa (patch) | |
tree | 36df6711eae8ed827ffd34bc4df0e6a7d41ecabf /railties | |
parent | 1f5709086f1b248f1387173c9e1faa2475ecf302 (diff) | |
parent | 7b8c90cf8b66ad2de29c36f0a4c118cd3a056419 (diff) | |
download | rails-6ef5c64ab8353fd82fc13989e07cda86da5a1efa.tar.gz rails-6ef5c64ab8353fd82fc13989e07cda86da5a1efa.tar.bz2 rails-6ef5c64ab8353fd82fc13989e07cda86da5a1efa.zip |
Merge pull request #24108 from gsamokovarov/web-console-console-plug
Advertise the console web-console feature
Diffstat (limited to 'railties')
-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 2367a24e54..86143ca1f1 100644 --- a/railties/lib/rails/generators/rails/app/templates/Gemfile +++ b/railties/lib/rails/generators/rails/app/templates/Gemfile @@ -31,7 +31,7 @@ end group :development do <%- unless options.api? -%> - # Access an IRB console on exception pages or by using <%%= console %> in views + # Access an IRB console on exception pages or by using <%%= console %> anywhere in the code. <%- if options.dev? || options.edge? -%> gem 'web-console', github: 'rails/web-console' <%- else -%> |