aboutsummaryrefslogtreecommitdiffstats
path: root/railties/CHANGELOG.md
diff options
context:
space:
mode:
authorGabe Kopley <gabe@coshx.com>2013-03-24 22:31:48 -0700
committerGabe Kopley <gabe@coshx.com>2013-03-24 22:31:48 -0700
commit940da7d9cbb39bc9589031df62e26edfc0c1f8bc (patch)
tree115783cb882b76bae9d8f5909cf545fb207b0074 /railties/CHANGELOG.md
parent592b4b40c285419e3074da99f82e0da40f29e6d0 (diff)
downloadrails-940da7d9cbb39bc9589031df62e26edfc0c1f8bc.tar.gz
rails-940da7d9cbb39bc9589031df62e26edfc0c1f8bc.tar.bz2
rails-940da7d9cbb39bc9589031df62e26edfc0c1f8bc.zip
Put coffee-rails in top-level of generated Gemfile
v3 of pull request based on additional feedback from @jeremy
Diffstat (limited to 'railties/CHANGELOG.md')
-rw-r--r--railties/CHANGELOG.md12
1 files changed, 12 insertions, 0 deletions
diff --git a/railties/CHANGELOG.md b/railties/CHANGELOG.md
index fb030dab4a..2727f1a85d 100644
--- a/railties/CHANGELOG.md
+++ b/railties/CHANGELOG.md
@@ -1,5 +1,17 @@
## Rails 4.0.0 (unreleased) ##
+* Allow vanilla apps to render CoffeeScript templates in production
+
+ Vanilla apps already render CoffeeScript templates in development and test
+ environments. With this change, the production behavior matches that of
+ the other environments.
+
+ Effectively, this meant moving coffee-rails (and the JavaScript runtime on
+ which it is dependent) from the :assets group to the top-level of the
+ generated Gemfile.
+
+ *Gabe Kopley*
+
* `Rails.version` now returns an instance of `Gem::Version`
*Charlie Somerville*