aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorMatthew Cullum <creativelyconcise@gmail.com>2014-11-22 20:48:10 -0800
committerMatthew Cullum <creativelyconcise@gmail.com>2014-11-22 20:48:10 -0800
commit331482ab68a43e16cb4b219e58147ed3a2c75141 (patch)
tree4b3031b6562fbd96f12e0b9e371c94d5273f60d6 /guides
parent165d27440b0775ef29ea8a8da700fab3683b9805 (diff)
downloadrails-331482ab68a43e16cb4b219e58147ed3a2c75141.tar.gz
rails-331482ab68a43e16cb4b219e58147ed3a2c75141.tar.bz2
rails-331482ab68a43e16cb4b219e58147ed3a2c75141.zip
Specified beta branch for web-console gem
Diffstat (limited to 'guides')
-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: