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

registers these changes in the CHANGELOGs

This commit is contained in:
Xavier Noria 2015-11-11 05:54:12 +01:00
parent c5846344ee
commit 59be32b572
2 changed files with 16 additions and 0 deletions

View file

@ -1,3 +1,14 @@
* Implements an evented file system monitor to asynchronously detect changes
in the application source code, routes, locales, etc.
To opt-in load the [listen](https://github.com/guard/listen) gem in `Gemfile`:
group :development do
gem 'listen', '~> 3.0.4'
end
*Puneet Agarwal* and *Xavier Noria*
* Updated `parameterize` to preserve the case of a string, optionally.
Example:

View file

@ -1,3 +1,8 @@
* Generated `Gemfile`s for new applications include a new dependency on
[listen](https://github.com/guard/listen) commented out.
*Puneet Agarwal* and *Xavier Noria*
* Deprecate `serve_static_files` in favor of `public_file_server.enabled`.
Unifies the static asset options under `public_file_server`.