aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/object.rb
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2009-03-21 03:34:49 -0700
committerJeremy Kemper <jeremy@bitsweat.net>2009-03-21 04:35:16 -0700
commitbd28c7b1b8a569d431cc93924ad1ff5fdb59f401 (patch)
tree7384e6aa0802804c6f0989dded15d84e0a5c99ec /activesupport/lib/active_support/core_ext/object.rb
parent005b40194e9103f5c52434334b5f3b5028cbe813 (diff)
downloadrails-bd28c7b1b8a569d431cc93924ad1ff5fdb59f401.tar.gz
rails-bd28c7b1b8a569d431cc93924ad1ff5fdb59f401.tar.bz2
rails-bd28c7b1b8a569d431cc93924ad1ff5fdb59f401.zip
blank? and duplicable? are Object extensions
Diffstat (limited to 'activesupport/lib/active_support/core_ext/object.rb')
-rw-r--r--activesupport/lib/active_support/core_ext/object.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/core_ext/object.rb b/activesupport/lib/active_support/core_ext/object.rb
index 0796a7b710..31a1526674 100644
--- a/activesupport/lib/active_support/core_ext/object.rb
+++ b/activesupport/lib/active_support/core_ext/object.rb
@@ -1,3 +1,6 @@
+require 'active_support/core_ext/object/blank'
+require 'active_support/core_ext/object/duplicable'
+
require 'active_support/core_ext/object/conversions'
require 'active_support/core_ext/object/extending'
require 'active_support/core_ext/object/instance_variables'