aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGenadi Samokovarov <gsamokovarov@gmail.com>2014-08-19 19:41:48 +0300
committerGenadi Samokovarov <gsamokovarov@gmail.com>2014-08-20 00:01:10 +0300
commit5407084cc55d0c013fbfd21950e04d3c07244bf1 (patch)
tree4cbb9e65df87421e1818f5ecb6f9e361a1f7112e
parent0cb3bdb66e87981c1094edecfce9182ae8aeb240 (diff)
downloadrails-5407084cc55d0c013fbfd21950e04d3c07244bf1.tar.gz
rails-5407084cc55d0c013fbfd21950e04d3c07244bf1.tar.bz2
rails-5407084cc55d0c013fbfd21950e04d3c07244bf1.zip
Mention web-console in 4.2 release notes
Mention the web-console inclusion in the default Gemfile in the Release notes and the railties changelog. We can eventually mention it in the upgrade guide, if needed. [ci skip]
-rw-r--r--guides/source/4_2_release_notes.md3
-rw-r--r--railties/CHANGELOG.md7
2 files changed, 10 insertions, 0 deletions
diff --git a/guides/source/4_2_release_notes.md b/guides/source/4_2_release_notes.md
index 1c14519506..f710b8bac9 100644
--- a/guides/source/4_2_release_notes.md
+++ b/guides/source/4_2_release_notes.md
@@ -69,6 +69,9 @@ Please refer to the [Changelog][railties] for detailed changes.
### Notable changes
+* Introduced `web-console` in the default application Gemfile.
+ ([Pull Request](https://github.com/rails/rails/pull/16532))
+
* Added a `required` option to the model generator for associations.
([Pull Request](https://github.com/rails/rails/pull/16062))
diff --git a/railties/CHANGELOG.md b/railties/CHANGELOG.md
index 5e2b82c3e9..9f3c3ccdf5 100644
--- a/railties/CHANGELOG.md
+++ b/railties/CHANGELOG.md
@@ -1,3 +1,10 @@
+* The [web-console](https://github.com/rails/web-console) gem is now
+ installed by default for new applications. It can help you debug
+ development exceptions by spawnig an interactive console in its cause
+ binding.
+
+ *Ryan Dao*, *Genadi Samokovarov*, *Guillermo Iguaran*
+
* Add a `required` option to the model generator for associations
*Sean Griffin*