aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source
diff options
context:
space:
mode:
authorGuillermo Iguaran <guilleiguaran@gmail.com>2014-08-24 10:41:18 -0500
committerGuillermo Iguaran <guilleiguaran@gmail.com>2014-08-24 10:41:18 -0500
commitaa58167486a9a084b1e8f5c7def0c19638c31b24 (patch)
treeffc02c0cf3126029a5f93beda1d76e9506e40f89 /guides/source
parent1f1cc0faee43b32f9a954302ac79b33b7243a869 (diff)
parent6964d5da9a4e30d50de0e160cb15a9e65eca6901 (diff)
downloadrails-aa58167486a9a084b1e8f5c7def0c19638c31b24.tar.gz
rails-aa58167486a9a084b1e8f5c7def0c19638c31b24.tar.bz2
rails-aa58167486a9a084b1e8f5c7def0c19638c31b24.zip
Merge pull request #16674 from gsamokovarov/describe-web-console
Describe web-console in the release notes
Diffstat (limited to 'guides/source')
-rw-r--r--guides/source/4_2_release_notes.md18
1 files changed, 14 insertions, 4 deletions
diff --git a/guides/source/4_2_release_notes.md b/guides/source/4_2_release_notes.md
index 39655447e3..dfc1876c95 100644
--- a/guides/source/4_2_release_notes.md
+++ b/guides/source/4_2_release_notes.md
@@ -63,10 +63,20 @@ TODO: add some technical details
New applications generated from Rails 4.2 now comes with the Web Console gem by
default.
-Web Console is an IRB console available in the browser. In development mode, you
-can go to /console and do your work right there. It will also be made available
-on all exception pages and allows you to jump between the different points in
-the backtrace.
+Web Console is a set of debugging tools for your Rails application. It comes
+with an interactive console for every error page, a `console` view helper and
+VT100 compatible terminal.
+
+The interactive console on the error pages let you execude code where the
+exception originated. Its quite handy to introspect the state that let to that
+error.
+
+The `console` view helper launches an interactive console with the context of
+the view right on the page its invoked on.
+
+Finally, you can lunch a VT100 terminal that runs `rails console`. If you need
+to create or modify existing test data, you can do that straight from the
+browser.
### Foreign key support