class method
self.find_zone
Ruby on Rails 7.0.10
Since v3.1.12Signature
self.find_zone(time_zone)
Returns a TimeZone instance matching the time zone provided. Accepts the time zone in any format supported by Time.zone=. Returns nil for invalid time zones.
Time.find_zone "America/New_York" # => #<ActiveSupport::TimeZone @name="America/New_York" ...> Time.find_zone "NOT-A-TIMEZONE" # => nil
Parameters
-
time_zonereq
Source
# File activesupport/lib/active_support/core_ext/time/zones.rb, line 93
def find_zone(time_zone)
find_zone!(time_zone) rescue nil
end
Defined in activesupport/lib/active_support/core_ext/time/zones.rb line 93
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in Time