diff options
author | Xavier Noria <fxn@hashref.com> | 2010-02-14 20:01:33 +0100 |
---|---|---|
committer | Yehuda Katz <yehudakatz@YK.local> | 2010-02-14 11:07:29 -0800 |
commit | f7db067b128b6e78b3296b5924ff65a8ba732e1c (patch) | |
tree | c3fe98aa6eb0931cfc5645e469335cc476933ad2 /activesupport/lib/active_support | |
parent | 4da45060a2e839fec4a7e9238cbc9d8de62b1b69 (diff) | |
download | rails-f7db067b128b6e78b3296b5924ff65a8ba732e1c.tar.gz rails-f7db067b128b6e78b3296b5924ff65a8ba732e1c.tar.bz2 rails-f7db067b128b6e78b3296b5924ff65a8ba732e1c.zip |
adds a few missing requires in AS object.rb and module.rb
Signed-off-by: Yehuda Katz <yehudakatz@YK.local>
Diffstat (limited to 'activesupport/lib/active_support')
-rw-r--r-- | activesupport/lib/active_support/core_ext/module.rb | 1 | ||||
-rw-r--r-- | activesupport/lib/active_support/core_ext/object.rb | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/core_ext/module.rb b/activesupport/lib/active_support/core_ext/module.rb index 07bac29a9f..bf272e9e73 100644 --- a/activesupport/lib/active_support/core_ext/module.rb +++ b/activesupport/lib/active_support/core_ext/module.rb @@ -7,3 +7,4 @@ require 'active_support/core_ext/module/attr_internal' require 'active_support/core_ext/module/attr_accessor_with_default' require 'active_support/core_ext/module/delegation' require 'active_support/core_ext/module/synchronization' +require 'active_support/core_ext/module/deprecation'
\ No newline at end of file diff --git a/activesupport/lib/active_support/core_ext/object.rb b/activesupport/lib/active_support/core_ext/object.rb index 46bbbff88a..db2dac1472 100644 --- a/activesupport/lib/active_support/core_ext/object.rb +++ b/activesupport/lib/active_support/core_ext/object.rb @@ -8,3 +8,8 @@ require 'active_support/core_ext/object/instance_variables' require 'active_support/core_ext/object/metaclass' require 'active_support/core_ext/object/misc' require 'active_support/core_ext/object/extending' + +require 'active_support/core_ext/object/returning' +require 'active_support/core_ext/object/to_param' +require 'active_support/core_ext/object/to_query' +require 'active_support/core_ext/object/with_options' |