Sha256: 69c87141cb779286acd751c4053853cd81f55481207e04676135355f3d9ad0f0

Contents?: true

Size: 1.14 KB

Versions: 76

Compression:

Stored size: 1.14 KB

Contents

module TZInfo  
  # Represents a country and references to its timezones as returned by a
  # DataSource.
  class CountryInfo
    # The ISO 3166 country code.
    attr_reader :code
    
    # The name of the country.
    attr_reader :name
    
    # Constructs a new CountryInfo with an ISO 3166 country code and name
    def initialize(code, name)
      @code = code
      @name = name
    end
    
    # Returns internal object state as a programmer-readable string.
    def inspect
      "#<#{self.class}: #@code>"
    end
    
    # Returns a frozen array of all the zone identifiers for the country.
    # The identifiers are ordered by importance according to the DataSource.
    def zone_identifiers
      raise_not_implemented('zone_identifiers')
    end
    
    # Returns a frozen array of all the timezones for the for the country as
    # CountryTimezone instances.
    #
    # The timezones are ordered by importance according to the DataSource.
    def zones
      raise_not_implemented('zones')
    end

    private

    def raise_not_implemented(method_name)
      raise NotImplementedError, "Subclasses must override #{method_name}"
    end
  end
end

Version data entries

76 entries across 72 versions & 27 rubygems

Version Path
mumukit-content-type-1.12.1 vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.11/lib/tzinfo/country_info.rb
mumukit-content-type-1.12.0 vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.11/lib/tzinfo/country_info.rb
tzinfo-1.2.11 lib/tzinfo/country_info.rb
tzinfo-1.2.10 lib/tzinfo/country_info.rb
mumukit-content-type-1.11.1 vendor/bundle/ruby/2.6.0/gems/tzinfo-1.2.9/lib/tzinfo/country_info.rb
tzinfo-1.2.9 lib/tzinfo/country_info.rb
tzinfo-1.2.8 lib/tzinfo/country_info.rb
grape-extra_validators-2.0.0 vendor/bundle/ruby/2.6.0/gems/tzinfo-1.2.6/lib/tzinfo/country_info.rb
grape-extra_validators-2.0.0 vendor/bundle/ruby/2.6.0/gems/tzinfo-1.2.7/lib/tzinfo/country_info.rb
files.com-1.0.55 docs/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/lib/tzinfo/country_info.rb
tzinfo-1.2.7 lib/tzinfo/country_info.rb
argon-1.3.1 vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/lib/tzinfo/country_info.rb
symbolic_enum-1.1.5 vendor/bundle/ruby/2.7.0/gems/tzinfo-1.2.6/lib/tzinfo/country_info.rb
grape-extra_validators-1.0.0 vendor/bundle/ruby/2.4.0/gems/tzinfo-1.2.6/lib/tzinfo/country_info.rb
tzinfo-1.2.6 lib/tzinfo/country_info.rb
zuora_connect_ui-0.10.0 vendor/ruby/2.6.0/gems/tzinfo-1.2.5/lib/tzinfo/country_info.rb
zuora_connect_ui-0.9.2 vendor/ruby/2.6.0/gems/tzinfo-1.2.5/lib/tzinfo/country_info.rb
chatops-rpc-0.0.2 fixtures/chatops-controller-example/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/lib/tzinfo/country_info.rb
chatops-rpc-0.0.1 fixtures/chatops-controller-example/vendor/bundle/ruby/2.5.0/gems/tzinfo-1.2.5/lib/tzinfo/country_info.rb
zuora_connect_ui-0.9.1 vendor/ruby/2.6.0/gems/tzinfo-1.2.5/lib/tzinfo/country_info.rb