aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2012-08-02 21:22:06 +0200
committerXavier Noria <fxn@hashref.com>2012-08-02 21:59:23 +0200
commit5e1b92044c8f2afa9e0b80095a9c9defbeaaf2e2 (patch)
tree6a6053f4e1f638e2300cd738842acba9f956c3d0 /activesupport/lib/active_support
parent64bc8447c2ccfba74939a556358f845980621a91 (diff)
downloadrails-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/lib/active_support')
-rw-r--r--activesupport/lib/active_support/rails.rb9
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'