class method
self.new
Ruby on Rails 6.1.7.10
Since v2.2.3Signature
self.new(utc_time, time_zone, local_time = nil, period = nil)
No documentation comment.
Parameters
-
utc_timereq -
time_zonereq -
local_timeopt = nil -
periodopt = nil
Source
# File activesupport/lib/active_support/time_with_zone.rb, line 52
def initialize(utc_time, time_zone, local_time = nil, period = nil)
@utc = utc_time ? transfer_time_values_to_utc_constructor(utc_time) : nil
@time_zone, @time = time_zone, local_time
@period = @utc ? period : get_period_and_ensure_valid_local_time(period)
end
Defined in activesupport/lib/active_support/time_with_zone.rb line 52
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveSupport::TimeWithZone