diff options
author | Xavier Noria <fxn@hashref.com> | 2012-08-02 18:07:20 +0200 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2012-08-02 21:59:22 +0200 |
commit | 1a7b2e8fadc34a70ad891b3b111a06e384fd3c6d (patch) | |
tree | 6631dcdaf05187635883cb78b4b1b1d5f273699e /actionpack/lib/action_view.rb | |
parent | 7a7ec74c1c32667e93f4bcd11d227d6134b0fa59 (diff) | |
download | rails-1a7b2e8fadc34a70ad891b3b111a06e384fd3c6d.tar.gz rails-1a7b2e8fadc34a70ad891b3b111a06e384fd3c6d.tar.bz2 rails-1a7b2e8fadc34a70ad891b3b111a06e384fd3c6d.zip |
defines a private require-hub active_support/rails
This is a private place to put those AS features that are used
by every component. Nowadays we cherry-pick individual files
wherever they are used, but that it is not worth the effort
for stuff that is going to be loaded for sure sooner or later,
like blank?, autoload, concern, etc.
Diffstat (limited to 'actionpack/lib/action_view.rb')
-rw-r--r-- | actionpack/lib/action_view.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/actionpack/lib/action_view.rb b/actionpack/lib/action_view.rb index 03dfa110e3..4bd72c5520 100644 --- a/actionpack/lib/action_view.rb +++ b/actionpack/lib/action_view.rb @@ -22,6 +22,7 @@ #++ require 'active_support' +require 'active_support/rails' require 'action_pack' module ActionView |