aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/module.rb
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2010-02-11 23:41:16 +0100
committerXavier Noria <fxn@hashref.com>2010-02-11 23:41:16 +0100
commitaa82bdf92953824fd35db4a734bf6effa8de3329 (patch)
tree257c4719fb2b37a21cdb5a5eeba62f1a5023d2b1 /activesupport/lib/active_support/core_ext/module.rb
parentb8bb54af7ff6652327d99f6a7cf5c96a3f3f876d (diff)
downloadrails-aa82bdf92953824fd35db4a734bf6effa8de3329.tar.gz
rails-aa82bdf92953824fd35db4a734bf6effa8de3329.tar.bz2
rails-aa82bdf92953824fd35db4a734bf6effa8de3329.zip
moves Class#reachable? to Module#reachable?, bases implementation on anonymous? and constantize, and adds test coverage
Diffstat (limited to 'activesupport/lib/active_support/core_ext/module.rb')
-rw-r--r--activesupport/lib/active_support/core_ext/module.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/core_ext/module.rb b/activesupport/lib/active_support/core_ext/module.rb
index c907445d90..07bac29a9f 100644
--- a/activesupport/lib/active_support/core_ext/module.rb
+++ b/activesupport/lib/active_support/core_ext/module.rb
@@ -1,6 +1,7 @@
require 'active_support/core_ext/module/aliasing'
require 'active_support/core_ext/module/introspection'
require 'active_support/core_ext/module/anonymous'
+require 'active_support/core_ext/module/reachable'
require 'active_support/core_ext/module/attribute_accessors'
require 'active_support/core_ext/module/attr_internal'
require 'active_support/core_ext/module/attr_accessor_with_default'