aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source
diff options
context:
space:
mode:
authorArthur Nogueira Neves <arthurnn@gmail.com>2014-11-23 14:27:01 -0500
committerArthur Nogueira Neves <arthurnn@gmail.com>2014-11-23 14:27:01 -0500
commitc837259ae422a659b2a71e6f29e3a4f3ea049f05 (patch)
treeada48176062e3d0fba5a2074606ef2bbe47115b7 /guides/source
parentb7b9e92093ed128c2b27a64c5732f6a98191cbf0 (diff)
parent331482ab68a43e16cb4b219e58147ed3a2c75141 (diff)
downloadrails-c837259ae422a659b2a71e6f29e3a4f3ea049f05.tar.gz
rails-c837259ae422a659b2a71e6f29e3a4f3ea049f05.tar.bz2
rails-c837259ae422a659b2a71e6f29e3a4f3ea049f05.zip
Merge pull request #17723 from marocu/patch-1
Specified beta branch for web-console gem
Diffstat (limited to 'guides/source')
-rw-r--r--guides/source/upgrading_ruby_on_rails.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/upgrading_ruby_on_rails.md b/guides/source/upgrading_ruby_on_rails.md
index 6f5dea45b5..042ff76212 100644
--- a/guides/source/upgrading_ruby_on_rails.md
+++ b/guides/source/upgrading_ruby_on_rails.md
@@ -55,7 +55,7 @@ a [pull request](https://github.com/rails/rails/edit/master/guides/source/upgrad
### Web Console
-First, add `gem 'web-console', '~> 2.0'` to the `:development` group in your Gemfile and run `bundle install` (it won't have been included when you upgraded Rails). Once it's been installed, you can simply drop a reference to the console helper (i.e., `<%= console %>`) into any view you want to enable it for. A console will also be provided on any error page you view in your development environment.
+First, add `gem 'web-console', '~> 2.0.0.beta4'` to the `:development` group in your Gemfile and run `bundle install` (it won't have been included when you upgraded Rails). Once it's been installed, you can simply drop a reference to the console helper (i.e., `<%= console %>`) into any view you want to enable it for. A console will also be provided on any error page you view in your development environment.
Additionally, you can tell Rails to automatically mount a VT100-compatible console on a predetermined path by setting the appropriate configuration flags in your development config: