diff options
author | Xavier Noria <fxn@hashref.com> | 2015-11-11 05:54:12 +0100 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2015-11-11 06:24:29 +0100 |
commit | 59be32b572cdff24da64ca6fd82db53a075c8bb6 (patch) | |
tree | 7d686bd8e137caac1f6dec34e936eed26d62381d /activesupport | |
parent | c5846344ee2a3e9dcdbc2d26ca4ff5b6002d09b0 (diff) | |
download | rails-59be32b572cdff24da64ca6fd82db53a075c8bb6.tar.gz rails-59be32b572cdff24da64ca6fd82db53a075c8bb6.tar.bz2 rails-59be32b572cdff24da64ca6fd82db53a075c8bb6.zip |
registers these changes in the CHANGELOGs
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/CHANGELOG.md | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/activesupport/CHANGELOG.md b/activesupport/CHANGELOG.md index d505218c7a..3fe627a7cf 100644 --- a/activesupport/CHANGELOG.md +++ b/activesupport/CHANGELOG.md @@ -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: |