diff options
author | Guillermo Iguaran <guilleiguaran@gmail.com> | 2017-06-12 09:01:59 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-12 09:01:59 -0500 |
commit | 981841192b4f69d7499cca2200e3daa6f5530304 (patch) | |
tree | df689bd816bdef170cfc3251d12d450ee7cebc51 /railties/lib/rails/generators | |
parent | 8426978c54429c28398daca3d14c8b5e52939657 (diff) | |
parent | d6581782e91d02352bb94847bd6902afdd230b73 (diff) | |
download | rails-981841192b4f69d7499cca2200e3daa6f5530304.tar.gz rails-981841192b4f69d7499cca2200e3daa6f5530304.tar.bz2 rails-981841192b4f69d7499cca2200e3daa6f5530304.zip |
Merge pull request #29425 from gsamokovarov/drop-the-irb-term
Drop IRB out of the web-console Gemfile comment
Diffstat (limited to 'railties/lib/rails/generators')
-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 747d2e6253..64e2062aea 100644 --- a/railties/lib/rails/generators/rails/app/templates/Gemfile +++ b/railties/lib/rails/generators/rails/app/templates/Gemfile @@ -37,7 +37,7 @@ end group :development do <%- unless options.api? -%> - # Access an IRB console on exception pages or by using <%%= console %> anywhere in the code. + # Access an interactive console on exception pages or by calling 'console' anywhere in the code. <%- if options.dev? || options.edge? -%> gem 'web-console', github: 'rails/web-console' <%- else -%> |