aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support.rb
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2009-03-31 10:03:35 -0700
committerJeremy Kemper <jeremy@bitsweat.net>2009-03-31 10:03:35 -0700
commitd848b7817fe5ce044709e09fa96464d0d6020c9d (patch)
tree1da4628fec848784c5c328503fabe53ca3e79348 /activesupport/lib/active_support.rb
parent48068bc1a4bbb272def06139fab392cf964ddc8a (diff)
downloadrails-d848b7817fe5ce044709e09fa96464d0d6020c9d.tar.gz
rails-d848b7817fe5ce044709e09fa96464d0d6020c9d.tar.bz2
rails-d848b7817fe5ce044709e09fa96464d0d6020c9d.zip
Encapsulate date/time core extensions and constant autoloads in active_support/core/time
Diffstat (limited to 'activesupport/lib/active_support.rb')
-rw-r--r--activesupport/lib/active_support.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/activesupport/lib/active_support.rb b/activesupport/lib/active_support.rb
index 7ebb3c48e0..d049740002 100644
--- a/activesupport/lib/active_support.rb
+++ b/activesupport/lib/active_support.rb
@@ -23,7 +23,7 @@
module ActiveSupport
def self.load_all!
- [Dependencies, Deprecation, Gzip, MessageVerifier, Multibyte, SecureRandom, TimeWithZone]
+ [Dependencies, Deprecation, Gzip, MessageVerifier, Multibyte, SecureRandom] + Core.load_all!
end
autoload :BacktraceCleaner, 'active_support/backtrace_cleaner'
@@ -46,11 +46,11 @@ module ActiveSupport
autoload :Rescuable, 'active_support/rescuable'
autoload :SecureRandom, 'active_support/secure_random'
autoload :StringInquirer, 'active_support/string_inquirer'
- autoload :TimeWithZone, 'active_support/time_with_zone'
- autoload :TimeZone, 'active_support/values/time_zone'
autoload :XmlMini, 'active_support/xml_mini'
end
+require 'active_support/core/all'
+
require 'active_support/vendor'
require 'active_support/core_ext'
require 'active_support/dependencies'