1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Merge pull request #16561 from gsamokovarov/mention-web-console-in-changelog

Mention web-console in 4.2 release notes
This commit is contained in:
Guillermo Iguaran 2014-08-19 16:20:53 -05:00
commit b9700c1e51
2 changed files with 10 additions and 0 deletions

View file

@ -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))

View file

@ -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*