aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/time.rb
diff options
context:
space:
mode:
authorPan Thomakos <pan.thomakos@gmail.com>2012-03-18 11:24:04 -0700
committerPan Thomakos <pan.thomakos@gmail.com>2012-03-18 11:24:04 -0700
commit0f8f99b989be949708331b81489053c94bd0d953 (patch)
tree8e78652d7943f41edfd11427df8fed87415e89b5 /activesupport/lib/active_support/time.rb
parentd3bbb23b2fdc6f597410e83e604d4919174aaa27 (diff)
downloadrails-0f8f99b989be949708331b81489053c94bd0d953.tar.gz
rails-0f8f99b989be949708331b81489053c94bd0d953.tar.bz2
rails-0f8f99b989be949708331b81489053c94bd0d953.zip
Removed ActiveSupport#load_all!
This is no longer used and actually raises an error when trying to load `ActiveSupport::Dependencies`. I removed the related code and added the `Dependencies` module to the autoload list.
Diffstat (limited to 'activesupport/lib/active_support/time.rb')
-rw-r--r--activesupport/lib/active_support/time.rb4
1 files changed, 0 insertions, 4 deletions
diff --git a/activesupport/lib/active_support/time.rb b/activesupport/lib/active_support/time.rb
index 9634b52ecf..bcd5d78b54 100644
--- a/activesupport/lib/active_support/time.rb
+++ b/activesupport/lib/active_support/time.rb
@@ -4,10 +4,6 @@ module ActiveSupport
autoload :Duration, 'active_support/duration'
autoload :TimeWithZone, 'active_support/time_with_zone'
autoload :TimeZone, 'active_support/values/time_zone'
-
- on_load_all do
- [Duration, TimeWithZone, TimeZone]
- end
end
require 'date'