aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuillermo Iguaran <guilleiguaran@gmail.com>2013-09-24 08:29:10 -0700
committerGuillermo Iguaran <guilleiguaran@gmail.com>2013-09-24 08:29:10 -0700
commitf55e178f0307aa2d2a8baae02869b78e3ea3c5b4 (patch)
tree1cf2a311c5f2509cb2f221dd1ec582b4e210f912
parent16c7873c44cbced87b153bcbc7ac7ecfe950b53c (diff)
parent344882e3cea057c93cd8d460276e4e2ddf3c691b (diff)
downloadrails-f55e178f0307aa2d2a8baae02869b78e3ea3c5b4.tar.gz
rails-f55e178f0307aa2d2a8baae02869b78e3ea3c5b4.tar.bz2
rails-f55e178f0307aa2d2a8baae02869b78e3ea3c5b4.zip
Merge pull request #11667 from gsamokovarov/introduce-web-console
Include web-console in new projects Gemfile
-rw-r--r--railties/lib/rails/generators/rails/app/templates/Gemfile3
1 files changed, 3 insertions, 0 deletions
diff --git a/railties/lib/rails/generators/rails/app/templates/Gemfile b/railties/lib/rails/generators/rails/app/templates/Gemfile
index 5cbca838f4..edc76e6c34 100644
--- a/railties/lib/rails/generators/rails/app/templates/Gemfile
+++ b/railties/lib/rails/generators/rails/app/templates/Gemfile
@@ -10,6 +10,9 @@ source 'https://rubygems.org'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 1.2'
+# Run `rails console` in the browser. Read more: https://github.com/rails/web-console
+gem 'web-console', group: :development
+
group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', require: false