diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2009-03-28 23:50:31 -0700 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2009-03-28 23:50:31 -0700 |
commit | e70a9b8cd94036b00e8402ceee57ff2f24cd62f8 (patch) | |
tree | 09bc61e08d6c177a1ee54168fa9c2c23f8cb638e /activesupport | |
parent | 9231e32a0778e20caa6cdd4237889b6d4049dbd3 (diff) | |
download | rails-e70a9b8cd94036b00e8402ceee57ff2f24cd62f8.tar.gz rails-e70a9b8cd94036b00e8402ceee57ff2f24cd62f8.tar.bz2 rails-e70a9b8cd94036b00e8402ceee57ff2f24cd62f8.zip |
Explicit dependency on Module extensions
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/dependencies.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/dependencies.rb b/activesupport/lib/active_support/dependencies.rb index ba515aaeec..41b7e00c0c 100644 --- a/activesupport/lib/active_support/dependencies.rb +++ b/activesupport/lib/active_support/dependencies.rb @@ -2,6 +2,9 @@ require 'set' require 'active_support/inflector' require 'active_support/core_ext/name_error' require 'active_support/core_ext/object/blank' +require 'active_support/core_ext/module/aliasing' +require 'active_support/core_ext/module/attribute_accessors' +require 'active_support/core_ext/module/introspection' module ActiveSupport #:nodoc: module Dependencies #:nodoc: |