instance method
at
Ruby on Rails 5.2.8.1
Since v2.2.3Signature
at(secs)
Method for creating new ActiveSupport::TimeWithZone instance in time zone of self from number of seconds since the Unix epoch.
Time.zone = 'Hawaii' # => "Hawaii" Time.utc(2000).to_f # => 946684800.0 Time.zone.at(946684800.0) # => Fri, 31 Dec 1999 14:00:00 HST -10:00
Parameters
-
secsreq
Source
# File activesupport/lib/active_support/values/time_zone.rb, line 358
def at(secs)
Time.at(secs).utc.in_time_zone(self)
end
Defined in activesupport/lib/active_support/values/time_zone.rb line 358
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveSupport::TimeZone