method

lazy_zones_map

Importance_0
v3.2.8 - Show latest stable - 0 notes - Class: ActiveSupport::TimeZone
lazy_zones_map() private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activesupport/lib/active_support/values/time_zone.rb, line 388 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
Register or log in to add new notes.