diff options
author | Xavier Noria <fxn@hashref.com> | 2012-08-02 21:22:06 +0200 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2012-08-02 21:59:23 +0200 |
commit | 5e1b92044c8f2afa9e0b80095a9c9defbeaaf2e2 (patch) | |
tree | 6a6053f4e1f638e2300cd738842acba9f956c3d0 /activesupport | |
parent | 64bc8447c2ccfba74939a556358f845980621a91 (diff) | |
download | rails-5e1b92044c8f2afa9e0b80095a9c9defbeaaf2e2.tar.gz rails-5e1b92044c8f2afa9e0b80095a9c9defbeaaf2e2.tar.bz2 rails-5e1b92044c8f2afa9e0b80095a9c9defbeaaf2e2.zip |
load active_support/core_ext/class/attribute in active_support/rails
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/rails.rb | 9 |
1 files changed, 6 insertions, 3 deletions
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' |