aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuillermo Iguaran <guilleiguaran@gmail.com>2014-09-10 01:32:36 -0400
committerGuillermo Iguaran <guilleiguaran@gmail.com>2014-09-10 01:32:36 -0400
commit9e1a7398aa533be58647d555a9ba1897bacd7e40 (patch)
tree6eeebd64fd8c70193b24334c38d40511431b4792
parentb1b9651c5bbe7c96f00a0ed71987de9091d7cb50 (diff)
parente6f8cbae0c890ccfa974bda521b30ec535a4d520 (diff)
downloadrails-9e1a7398aa533be58647d555a9ba1897bacd7e40.tar.gz
rails-9e1a7398aa533be58647d555a9ba1897bacd7e40.tar.bz2
rails-9e1a7398aa533be58647d555a9ba1897bacd7e40.zip
Merge pull request #16858 from y-yagi/fix_web_console_docs
[ci skip] application.rb -> development.rb in web-console docs
-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 0111809cfb..88b996ecb1 100644
--- a/guides/source/upgrading_ruby_on_rails.md
+++ b/guides/source/upgrading_ruby_on_rails.md
@@ -57,7 +57,7 @@ a [pull request](https://github.com/rails/rails/edit/master/guides/source/upgrad
First, add `gem 'web-console', '~> 2.0.0.beta3'` 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 `config.web_console.automount = true` in your application.rb. You can specify the path by setting `config.web_console.default_mount_path` (note that this defaults to `/console`).
+Additionally, you can tell Rails to automatically mount a VT100-compatible console on a predetermined path by setting `config.web_console.automount = true` in your `config/environments/development.rb`. You can specify the path by setting `config.web_console.default_mount_path` (note that this defaults to `/console`).
TODO: Update `web-console` version to release version.