From 1a7b2e8fadc34a70ad891b3b111a06e384fd3c6d Mon Sep 17 00:00:00 2001 From: Xavier Noria Date: Thu, 2 Aug 2012 18:07:20 +0200 Subject: 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. --- activesupport/lib/active_support/rails.rb | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 activesupport/lib/active_support/rails.rb (limited to 'activesupport') diff --git a/activesupport/lib/active_support/rails.rb b/activesupport/lib/active_support/rails.rb new file mode 100644 index 0000000000..500ce30da6 --- /dev/null +++ b/activesupport/lib/active_support/rails.rb @@ -0,0 +1,9 @@ +# This is private interface. +# +# Rails components cherry pick from Active Support as needed, but there are a +# few features that are used for sure some way or another and it is not worth +# to put individual requires absolutely everywhere. Think blank? for example. +# +# This file is loaded by every Rails component except Active Support itself, +# but it does not belong to the Rails public interface. It is internal to +# Rails and can change anytime. -- cgit v1.2.3