class method
self.lazy_zones_map
Ruby on Rails 4.0.13
Since v3.1.12 Last seen in v4.0.13 PrivateSignature
self.lazy_zones_map()
No documentation comment.
Source
# File activesupport/lib/active_support/values/time_zone.rb, line 415
def lazy_zones_map
require_tzinfo
@lazy_zones_map ||= Hash.new do |hash, place|
hash[place] = create(place) if MAPPING.has_key?(place)
end
end
Defined in activesupport/lib/active_support/values/time_zone.rb line 415
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveSupport::TimeZone