aboutsummaryrefslogtreecommitdiffstats
path: root/railties/CHANGELOG
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2011-06-29 09:39:41 -0300
committerJosé Valim <jose.valim@gmail.com>2011-06-29 09:41:16 -0300
commitc690b7124d2f2206342d11aebb7aa3fc990046d2 (patch)
tree1d4e0bc6a60c46ae7e2e6fed8965320ed997f208 /railties/CHANGELOG
parent4106245530bc573c035fe70e8fc8633e89741abd (diff)
downloadrails-c690b7124d2f2206342d11aebb7aa3fc990046d2.tar.gz
rails-c690b7124d2f2206342d11aebb7aa3fc990046d2.tar.bz2
rails-c690b7124d2f2206342d11aebb7aa3fc990046d2.zip
[IMPORTANT] Make "sprockets/railtie" require explicit.
This makes "sprockets/railtie" explicit. This means that sprockets will be loaded when you require "rails/all". If you are not using requiring "rails/all", you need to manually load it with all other framework railties. In order to be complete, this commit also adds --skip-sprockets to the rails generator.
Diffstat (limited to 'railties/CHANGELOG')
-rw-r--r--railties/CHANGELOG2
1 files changed, 2 insertions, 0 deletions
diff --git a/railties/CHANGELOG b/railties/CHANGELOG
index e8b4a32056..a9b4deb551 100644
--- a/railties/CHANGELOG
+++ b/railties/CHANGELOG
@@ -8,6 +8,8 @@
*Rails 3.1.0 (unreleased)*
+* Make sprockets/railtie require explicit and add --skip-sprockets to app generator [José Valim]
+
* Added Rails.groups that automatically handles Rails.env and ENV["RAILS_GROUPS"] [José Valim]
* The new rake task assets:clean removes precompiled assets. [fxn]