From 5e1b92044c8f2afa9e0b80095a9c9defbeaaf2e2 Mon Sep 17 00:00:00 2001 From: Xavier Noria Date: Thu, 2 Aug 2012 21:22:06 +0200 Subject: load active_support/core_ext/class/attribute in active_support/rails --- activesupport/lib/active_support/rails.rb | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'activesupport/lib/active_support') diff --git a/activesupport/lib/active_support/rails.rb b/activesupport/lib/active_support/rails.rb index 3cd59e6815..57d1598734 100644 --- a/activesupport/lib/active_support/rails.rb +++ b/activesupport/lib/active_support/rails.rb @@ -8,14 +8,17 @@ # but it does not belong to the Rails public interface. It is internal to # Rails and can change anytime. -# blank? and present? +# Defines Object#blank? and Object#present?. require 'active_support/core_ext/object/blank' -# in? +# Defines Object#in?. require 'active_support/core_ext/object/inclusion' # Rails own autoload, eager_load, etc. require 'active_support/dependencies/autoload' -# support for ClassMethods and the included macro +# Support for ClassMethods and the included macro. require 'active_support/concern' + +# Defines Class#class_attribute. +require 'active_support/core_ext/class/attribute' -- cgit v1.2.3