diff options
author | Yehuda Katz <wycats@Yehuda-Katz.local> | 2009-11-14 19:33:58 -0800 |
---|---|---|
committer | Yehuda Katz <wycats@Yehuda-Katz.local> | 2009-11-14 19:33:58 -0800 |
commit | cc011bc2bef98bf8b1dc78351f243af7ad641269 (patch) | |
tree | b1fcdbde5e349fa40f81062bd1a37c0477059f5b /activesupport | |
parent | bc1538e9951847dd4d1d7e37816d91b791862a0c (diff) | |
download | rails-cc011bc2bef98bf8b1dc78351f243af7ad641269.tar.gz rails-cc011bc2bef98bf8b1dc78351f243af7ad641269.tar.bz2 rails-cc011bc2bef98bf8b1dc78351f243af7ad641269.zip |
Add TimeZone dependency
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/time_with_zone.rb | 2 |
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. |