aboutsummaryrefslogtreecommitdiffstats
path: root/railties/CHANGELOG.md
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2015-12-13 18:37:24 +0100
committerXavier Noria <fxn@hashref.com>2015-12-13 18:47:42 +0100
commit722359625903a1432e1f6197885ae5862608cba5 (patch)
tree400093b27d94d34a5bdbbf9fe01f74d8ac281ddd /railties/CHANGELOG.md
parent6be27016dff19fc7509d3668aba375fd332d6822 (diff)
downloadrails-722359625903a1432e1f6197885ae5862608cba5.tar.gz
rails-722359625903a1432e1f6197885ae5862608cba5.tar.bz2
rails-722359625903a1432e1f6197885ae5862608cba5.zip
let config.file_watcher be the way to enable the evented file watcher
Before this commit, the sole presence of the Listen constant enabled the evented file watcher (unless listen resorted to the polling backend). This way, applications may depend on listen for other stuff independently of this feature. Also, allows teams with mixed setups to decide at boot time whether the evented watcher should be enabled for each particular instance.
Diffstat (limited to 'railties/CHANGELOG.md')
-rw-r--r--railties/CHANGELOG.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/railties/CHANGELOG.md b/railties/CHANGELOG.md
index e5ab31005e..b9d2db773a 100644
--- a/railties/CHANGELOG.md
+++ b/railties/CHANGELOG.md
@@ -1,3 +1,8 @@
+* The generated config file for the development environment includes a new
+ config line, commented out, showing how to enable the evented file watcher.
+
+ *Xavier Noria*
+
* `config.debug_exception_response_format` configures the format used
in responses when errors occur in development mode.
@@ -38,11 +43,6 @@
*Yuki Nishijima*
-* 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`.