aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPrem Sichanugrist <s@sikachu.com>2010-06-10 19:47:54 -0400
committerJosé Valim <jose.valim@gmail.com>2010-06-22 17:18:28 +0200
commit6c4bab306ae1ee47b7fe5933867d321b68c7699a (patch)
tree12cfe4b2a389d24e7a8d71ddae40d11ef3dd9eef
parentf29fb0dd9ef3e563f9813ee09e7a9b826f70e3f2 (diff)
downloadrails-6c4bab306ae1ee47b7fe5933867d321b68c7699a.tar.gz
rails-6c4bab306ae1ee47b7fe5933867d321b68c7699a.tar.bz2
rails-6c4bab306ae1ee47b7fe5933867d321b68c7699a.zip
Missing require for the class/attribute.rb [4812 state:resolved]
Signed-off-by: José Valim <jose.valim@gmail.com>
-rw-r--r--activesupport/lib/active_support/core_ext/class.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/core_ext/class.rb b/activesupport/lib/active_support/core_ext/class.rb
index f2ca9c7cc9..6f308a0d62 100644
--- a/activesupport/lib/active_support/core_ext/class.rb
+++ b/activesupport/lib/active_support/core_ext/class.rb
@@ -1,3 +1,4 @@
+require 'active_support/core_ext/class/attribute'
require 'active_support/core_ext/class/attribute_accessors'
require 'active_support/core_ext/class/inheritable_attributes'
require 'active_support/core_ext/class/delegating_attributes'