Sha256: 4e0f24988f68a9c37189c758e4a8a8cbbc4084e18bff1825bb8cbe27e2e8830a

Contents?: true

Size: 1.13 KB

Versions: 40

Compression:

Stored size: 1.13 KB

Contents

module TZInfo  
  # Represents information about a country returned by ZoneinfoDataSource.
  #
  # @private
  class ZoneinfoCountryInfo < CountryInfo #:nodoc:
    # Constructs a new CountryInfo with an ISO 3166 country code, name and 
    # an array of CountryTimezones.
    def initialize(code, name, zones)
      super(code, name)
      @zones = zones.dup.freeze
      @zone_identifiers = nil
    end
    
    # Returns a frozen array of all the zone identifiers for the country ordered
    # geographically, most populous first.
    def zone_identifiers
      # Thread-safety: It is possible that the value of @zone_identifiers may be 
      # calculated multiple times in concurrently executing threads. It is not 
      # worth the overhead of locking to ensure that @zone_identifiers is only 
      # calculated once.
    
      unless @zone_identifiers
        @zone_identifiers = zones.collect {|zone| zone.identifier}.freeze
      end
      
      @zone_identifiers
    end
    
    # Returns a frozen array of all the timezones for the for the country 
    # ordered geographically, most populous first.
    def zones
      @zones
    end
  end
end

Version data entries

40 entries across 37 versions & 15 rubygems

Version Path
pract6-0.1.0 .gem/ruby/2.3.0/gems/tzinfo-1.2.3/lib/tzinfo/zoneinfo_country_info.rb
tzinfo-1.2.4 lib/tzinfo/zoneinfo_country_info.rb
tdiary-5.0.5 vendor/bundle/gems/tzinfo-1.2.2/lib/tzinfo/zoneinfo_country_info.rb
tdiary-5.0.5 vendor/bundle/gems/tzinfo-1.2.3/lib/tzinfo/zoneinfo_country_info.rb
tdiary-5.0.5 vendor/bundle/gems/tdiary-5.0.4/vendor/bundle/gems/tzinfo-1.2.2/lib/tzinfo/zoneinfo_country_info.rb
fluent-plugin-detect-memb-exceptions-0.0.2 vendor/bundle/ruby/2.0.0/gems/tzinfo-1.2.3/lib/tzinfo/zoneinfo_country_info.rb
fluent-plugin-detect-memb-exceptions-0.0.1 vendor/bundle/ruby/2.0.0/gems/tzinfo-1.2.3/lib/tzinfo/zoneinfo_country_info.rb
enju_leaf-1.2.1 vendor/bundle/ruby/2.3/gems/tzinfo-1.2.3/lib/tzinfo/zoneinfo_country_info.rb
lazy_record-0.2.1 vendor/bundle/gems/tzinfo-1.2.2/lib/tzinfo/zoneinfo_country_info.rb
lazy_record-0.2.0 vendor/bundle/gems/tzinfo-1.2.2/lib/tzinfo/zoneinfo_country_info.rb
lazy_record-0.1.9 vendor/bundle/gems/tzinfo-1.2.2/lib/tzinfo/zoneinfo_country_info.rb
lazy_record-0.1.8 vendor/bundle/gems/tzinfo-1.2.2/lib/tzinfo/zoneinfo_country_info.rb
lazy_record-0.1.7 vendor/bundle/gems/tzinfo-1.2.2/lib/tzinfo/zoneinfo_country_info.rb
lazy_record-0.1.6 vendor/bundle/gems/tzinfo-1.2.2/lib/tzinfo/zoneinfo_country_info.rb
lazy_record-0.1.4 vendor/bundle/gems/tzinfo-1.2.2/lib/tzinfo/zoneinfo_country_info.rb
tdiary-5.0.4 vendor/bundle/gems/tzinfo-1.2.2/lib/tzinfo/zoneinfo_country_info.rb
tzinfo-1.2.3 lib/tzinfo/zoneinfo_country_info.rb
lazy_record-0.1.3 vendor/bundle/gems/tzinfo-1.2.2/lib/tzinfo/zoneinfo_country_info.rb
lazy_record-0.1.2 vendor/bundle/gems/tzinfo-1.2.2/lib/tzinfo/zoneinfo_country_info.rb
lazy_record-0.1.1 vendor/bundle/gems/tzinfo-1.2.2/lib/tzinfo/zoneinfo_country_info.rb