aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/time_with_zone.rb
diff options
context:
space:
mode:
authorYehuda Katz <wycats@Yehuda-Katz.local>2009-11-14 19:33:58 -0800
committerYehuda Katz <wycats@Yehuda-Katz.local>2009-11-14 19:33:58 -0800
commitcc011bc2bef98bf8b1dc78351f243af7ad641269 (patch)
treeb1fcdbde5e349fa40f81062bd1a37c0477059f5b /activesupport/lib/active_support/time_with_zone.rb
parentbc1538e9951847dd4d1d7e37816d91b791862a0c (diff)
downloadrails-cc011bc2bef98bf8b1dc78351f243af7ad641269.tar.gz
rails-cc011bc2bef98bf8b1dc78351f243af7ad641269.tar.bz2
rails-cc011bc2bef98bf8b1dc78351f243af7ad641269.zip
Add TimeZone dependency
Diffstat (limited to 'activesupport/lib/active_support/time_with_zone.rb')
-rw-r--r--activesupport/lib/active_support/time_with_zone.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/time_with_zone.rb b/activesupport/lib/active_support/time_with_zone.rb
index 8cd5c1de63..8304f6c434 100644
--- a/activesupport/lib/active_support/time_with_zone.rb
+++ b/activesupport/lib/active_support/time_with_zone.rb
@@ -1,3 +1,5 @@
+require "active_support/values/time_zone"
+
module ActiveSupport
# A Time-like class that can represent a time in any time zone. Necessary because standard Ruby Time instances are
# limited to UTC and the system's <tt>ENV['TZ']</tt> zone.