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 ENV[‘TZ’] zone.
You shouldn‘t ever need to create a TimeWithZone instance directly via new — instead, Rails provides the methods local, parse, at and now on TimeZone instances, and in_time_zone on Time and DateTime instances, for a more user-friendly syntax. Examples:
Time.zone = 'Eastern Time (US & Canada)' # => 'Eastern Time (US & Canada)'
Time.zone.local(2007, 2, 10, 15, 30, 45) # => Sat, 10 Feb 2007 15:30:45 EST -05:00
Time.zone.parse('2007-02-01 15:30:45') # => Sat, 10 Feb 2007 15:30:45 EST -05:00
Time.zone.at(1170361845) # => Sat, 10 Feb 2007 15:30:45 EST -05:00
Time.zone.now # => Sun, 18 May 2008 13:07:55 EDT -04:00
Time.utc(2007, 2, 10, 20, 30, 45).in_time_zone # => Sat, 10 Feb 2007 15:30:45 EST -05:00
See TimeZone and ActiveSupport::CoreExtensions::Time::Zones for further documentation for these methods.
TimeWithZone instances implement the same API as Ruby Time instances, so that Time and TimeWithZone instances are interchangable. Examples:
t = Time.zone.now # => Sun, 18 May 2008 13:27:25 EDT -04:00 t.hour # => 13 t.dst? # => true t.utc_offset # => -14400 t.zone # => "EDT" t.to_s(:rfc822) # => "Sun, 18 May 2008 13:27:25 -0400" t + 1.day # => Mon, 19 May 2008 13:27:25 EDT -04:00 t.beginning_of_year # => Tue, 01 Jan 2008 00:00:00 EST -05:00 t > Time.utc(1999) # => true t.is_a?(Time) # => true t.is_a?(ActiveSupport::TimeWithZone) # => true
- +
- -
- <=>
- acts_like_time?
- advance
- ago
- between?
- comparable_time
- dst?
- eql?
- formatted_offset
- freeze
- future?
- getgm
- getlocal
- getutc
- gmt?
- gmt_offset
- gmtime
- gmtoff
- hash
- httpdate
- in_time_zone
- inspect
- is_a?
- isdst
- iso8601
- kind_of?
- localtime
- marshal_dump
- marshal_load
- method_missing
- new
- past?
- period
- respond_to?
- rfc2822
- rfc822
- since
- strftime
- time
- to_a
- to_datetime
- to_f
- to_i
- to_json
- to_s
- to_time
- to_yaml
- today?
- tv_sec
- usec
- utc
- utc?
- utc_offset
- xmlschema
- zone
- Comparable
| [R] | time_zone |
[ show source ]
# File vendor/rails/activesupport/lib/active_support/time_with_zone.rb, line 36
36: def initialize(utc_time, time_zone, local_time = nil, period = nil)
37: @utc, @time_zone, @time = utc_time, time_zone, local_time
38: @period = @utc ? period : get_period_and_ensure_valid_local_time
39: end
[ show source ]
# File vendor/rails/activesupport/lib/active_support/time_with_zone.rb, line 186
186: def +(other)
187: # If we're adding a Duration of variable length (i.e., years, months, days), move forward from #time,
188: # otherwise move forward from #utc, for accuracy when moving across DST boundaries
189: if duration_of_variable_length?(other)
190: method_missing(:+, other)
191: else
192: result = utc.acts_like?(:date) ? utc.since(other) : utc + other rescue utc.since(other)
193: result.in_time_zone(time_zone)
194: end
195: end
[ show source ]
# File vendor/rails/activesupport/lib/active_support/time_with_zone.rb, line 197
197: def -(other)
198: # If we're subtracting a Duration of variable length (i.e., years, months, days), move backwards from #time,
199: # otherwise move backwards #utc, for accuracy when moving across DST boundaries
200: if other.acts_like?(:time)
201: utc - other
202: elsif duration_of_variable_length?(other)
203: method_missing(:-, other)
204: else
205: result = utc.acts_like?(:date) ? utc.ago(other) : utc - other rescue utc.ago(other)
206: result.in_time_zone(time_zone)
207: end
208: end
Use the time in UTC for comparisons.
[ show source ]
# File vendor/rails/activesupport/lib/active_support/time_with_zone.rb, line 162
162: def <=>(other)
163: utc <=> other
164: end
So that self acts_like?(:time).
[ show source ]
# File vendor/rails/activesupport/lib/active_support/time_with_zone.rb, line 271
271: def acts_like_time?
272: true
273: end
[ show source ]
# File vendor/rails/activesupport/lib/active_support/time_with_zone.rb, line 224
224: def advance(options)
225: # If we're advancing a value of variable length (i.e., years, weeks, months, days), advance from #time,
226: # otherwise advance from #utc, for accuracy when moving across DST boundaries
227: if options.detect {|k,v| [:years, :weeks, :months, :days].include? k}
228: method_missing(:advance, options)
229: else
230: utc.advance(options).in_time_zone(time_zone)
231: end
232: end
[ show source ]
# File vendor/rails/activesupport/lib/active_support/time_with_zone.rb, line 220
220: def ago(other)
221: since(-other)
222: end
[ show source ]
# File vendor/rails/activesupport/lib/active_support/time_with_zone.rb, line 166
166: def between?(min, max)
167: utc.between?(min, max)
168: end
Alias for utc
[ show source ]
# File vendor/rails/activesupport/lib/active_support/time_with_zone.rb, line 72
72: def dst?
73: period.dst?
74: end
[ show source ]
# File vendor/rails/activesupport/lib/active_support/time_with_zone.rb, line 182
182: def eql?(other)
183: utc == other
184: end
[ show source ]
# File vendor/rails/activesupport/lib/active_support/time_with_zone.rb, line 88
88: def formatted_offset(colon = true, alternate_utc_string = nil)
89: utc? && alternate_utc_string || utc_offset.to_utc_offset_s(colon)
90: end
[ show source ]
# File vendor/rails/activesupport/lib/active_support/time_with_zone.rb, line 281
281: def freeze
282: period; utc; time # preload instance variables before freezing
283: super
284: end
[ show source ]
# File vendor/rails/activesupport/lib/active_support/time_with_zone.rb, line 178
178: def future?
179: utc.future?
180: end
Alias for utc
Alias for localtime
Alias for utc
Alias for utc?
Alias for utc_offset
Alias for utc
Alias for utc_offset
Alias for to_i
[ show source ]
# File vendor/rails/activesupport/lib/active_support/time_with_zone.rb, line 134
134: def httpdate
135: utc.httpdate
136: end
[ show source ]
# File vendor/rails/activesupport/lib/active_support/time_with_zone.rb, line 61
61: def in_time_zone(new_zone = ::Time.zone)
62: return self if time_zone == new_zone
63: utc.in_time_zone(new_zone)
64: end
[ show source ]
# File vendor/rails/activesupport/lib/active_support/time_with_zone.rb, line 97
97: def inspect
98: "#{time.strftime('%a, %d %b %Y %H:%M:%S')} #{zone} #{formatted_offset}"
99: end
Say we‘re a Time to thwart type checking.
[ show source ]
# File vendor/rails/activesupport/lib/active_support/time_with_zone.rb, line 276
276: def is_a?(klass)
277: klass == ::Time || super
278: end
Alias for xmlschema
[ show source ]
# File vendor/rails/activesupport/lib/active_support/time_with_zone.rb, line 67
67: def localtime
68: utc.getlocal
69: end
[ show source ]
# File vendor/rails/activesupport/lib/active_support/time_with_zone.rb, line 286
286: def marshal_dump
287: [utc, time_zone.name, time]
288: end
[ show source ]
# File vendor/rails/activesupport/lib/active_support/time_with_zone.rb, line 290
290: def marshal_load(variables)
291: initialize(variables[0].utc, ::Time.__send__(:get_zone, variables[1]), variables[2].utc)
292: end
Send the missing method to time instance, and wrap result in a new TimeWithZone with the existing time_zone.
[ show source ]
# File vendor/rails/activesupport/lib/active_support/time_with_zone.rb, line 302
302: def method_missing(sym, *args, &block)
303: result = time.__send__(sym, *args, &block)
304: result.acts_like?(:time) ? self.class.new(nil, time_zone, result) : result
305: end
[ show source ]
# File vendor/rails/activesupport/lib/active_support/time_with_zone.rb, line 170
170: def past?
171: utc.past?
172: end
Returns the underlying TZInfo::TimezonePeriod.
[ show source ]
# File vendor/rails/activesupport/lib/active_support/time_with_zone.rb, line 56
56: def period
57: @period ||= time_zone.period_for_utc(@utc)
58: end
Ensure proxy class responds to all methods that underlying time instance responds to.
[ show source ]
# File vendor/rails/activesupport/lib/active_support/time_with_zone.rb, line 295
295: def respond_to?(sym, include_priv = false)
296: # consistently respond false to acts_like?(:date), regardless of whether #time is a Time or DateTime
297: return false if sym.to_s == 'acts_like_date?'
298: super || time.respond_to?(sym, include_priv)
299: end
[ show source ]
# File vendor/rails/activesupport/lib/active_support/time_with_zone.rb, line 138
138: def rfc2822
139: to_s(:rfc822)
140: end
Alias for rfc2822
[ show source ]
# File vendor/rails/activesupport/lib/active_support/time_with_zone.rb, line 210
210: def since(other)
211: # If we're adding a Duration of variable length (i.e., years, months, days), move forward from #time,
212: # otherwise move forward from #utc, for accuracy when moving across DST boundaries
213: if duration_of_variable_length?(other)
214: method_missing(:since, other)
215: else
216: utc.since(other).in_time_zone(time_zone)
217: end
218: end
Replaces %Z and %z directives with zone and formatted_offset, respectively, before passing to Time#strftime, so that zone information is correct
[ show source ]
# File vendor/rails/activesupport/lib/active_support/time_with_zone.rb, line 156
156: def strftime(format)
157: format = format.gsub('%Z', zone).gsub('%z', formatted_offset(false))
158: time.strftime(format)
159: end
[ show source ]
# File vendor/rails/activesupport/lib/active_support/time_with_zone.rb, line 42
42: def time
43: @time ||= period.to_local(@utc)
44: end
[ show source ]
# File vendor/rails/activesupport/lib/active_support/time_with_zone.rb, line 247
247: def to_a
248: [time.sec, time.min, time.hour, time.day, time.mon, time.year, time.wday, time.yday, dst?, zone]
249: end
[ show source ]
# File vendor/rails/activesupport/lib/active_support/time_with_zone.rb, line 266
266: def to_datetime
267: utc.to_datetime.new_offset(Rational(utc_offset, 86_400))
268: end
[ show source ]
# File vendor/rails/activesupport/lib/active_support/time_with_zone.rb, line 251
251: def to_f
252: utc.to_f
253: end
[ show source ]
# File vendor/rails/activesupport/lib/active_support/time_with_zone.rb, line 255
255: def to_i
256: utc.to_i
257: end
Returns a JSON string representing the TimeWithZone. If ActiveSupport.use_standard_json_time_format is set to true, the ISO 8601 format is used.
Examples:
# With ActiveSupport.use_standard_json_time_format = true Time.utc(2005,2,1,15,15,10).in_time_zone.to_json # => "2005-02-01T15:15:10Z" # With ActiveSupport.use_standard_json_time_format = false Time.utc(2005,2,1,15,15,10).in_time_zone.to_json # => "2005/02/01 15:15:10 +0000"
[ show source ]
# File vendor/rails/activesupport/lib/active_support/time_with_zone.rb, line 118
118: def to_json(options = nil)
119: if ActiveSupport.use_standard_json_time_format
120: xmlschema.inspect
121: else
122: %("#{time.strftime("%Y/%m/%d %H:%M:%S")} #{formatted_offset(false)}")
123: end
124: end
:db format outputs time in UTC; all others output time in local. Uses TimeWithZone‘s strftime, so %Z and %z work correctly.
[ show source ]
# File vendor/rails/activesupport/lib/active_support/time_with_zone.rb, line 145
145: def to_s(format = :default)
146: return utc.to_s(format) if format == :db
147: if formatter = ::Time::DATE_FORMATS[format]
148: formatter.respond_to?(:call) ? formatter.call(self).to_s : strftime(formatter)
149: else
150: "#{time.strftime("%Y-%m-%d %H:%M:%S")} #{formatted_offset(false, 'UTC')}" # mimicking Ruby 1.9 Time#to_s format
151: end
152: end
A TimeWithZone acts like a Time, so just return self.
[ show source ]
# File vendor/rails/activesupport/lib/active_support/time_with_zone.rb, line 262
262: def to_time
263: self
264: end
[ show source ]
# File vendor/rails/activesupport/lib/active_support/time_with_zone.rb, line 126
126: def to_yaml(options = {})
127: if options.kind_of?(YAML::Emitter)
128: utc.to_yaml(options)
129: else
130: time.to_yaml(options).gsub('Z', formatted_offset(true, 'Z'))
131: end
132: end
[ show source ]
# File vendor/rails/activesupport/lib/active_support/time_with_zone.rb, line 174
174: def today?
175: time.today?
176: end
Alias for to_i
[ show source ]
# File vendor/rails/activesupport/lib/active_support/time_with_zone.rb, line 243
243: def usec
244: time.respond_to?(:usec) ? time.usec : 0
245: end
[ show source ]
# File vendor/rails/activesupport/lib/active_support/time_with_zone.rb, line 47
47: def utc
48: @utc ||= period.to_utc(@time)
49: end
[ show source ]
# File vendor/rails/activesupport/lib/active_support/time_with_zone.rb, line 77
77: def utc?
78: time_zone.name == 'UTC'
79: end
[ show source ]
# File vendor/rails/activesupport/lib/active_support/time_with_zone.rb, line 82
82: def utc_offset
83: period.utc_total_offset
84: end
[ show source ]
# File vendor/rails/activesupport/lib/active_support/time_with_zone.rb, line 101
101: def xmlschema
102: "#{time.strftime("%Y-%m-%dT%H:%M:%S")}#{formatted_offset(true, 'Z')}"
103: end
[ show source ]
# File vendor/rails/activesupport/lib/active_support/time_with_zone.rb, line 93
93: def zone
94: period.zone_identifier.to_s
95: end