Class: FlowCommerce::Reference::Countries
- Inherits:
 - 
      Object
      
        
- Object
 - FlowCommerce::Reference::Countries
 
 
- Defined in:
 - lib/generated/countries.rb,
lib/flowcommerce-reference.rb 
Defined Under Namespace
Classes: Data
Constant Summary collapse
- ISO_3166_2 =
 %w(AD AE AG AI AL AM AO AR AS AT AU AW AZ BA BB BD BE BF BG BH BJ BL BM BN BO BQ BR BS BT BW BZ CA CF CG CH CI CK CL CM CN CO CR CV CW CY CZ DE DJ DK DM DO DZ EC EE EG ES ET FI FJ FK FM FO FR GA GB GD GE GF GG GH GI GL GM GN GP GQ GR GT GU GW GY HK HN HR HT HU ID IE IL IN IS IT JE JM JO JP KE KG KH KI KM KN KP KR KW KY KZ LA LB LC LI LK LS LT LU LV LY MA MC MD ME MF MG MH ML MN MO MP MQ MR MS MT MU MV MW MX MY MZ NA NC NE NG NI NL NO NP NR NU NZ OM PA PE PF PG PH PK PL PM PT PW PY QA RE RO RS RU RW SA SB SC SE SG SH SI SK SL SM SN SO SR SS ST SV SX SZ TC TD TG TH TJ TL TM TO TR TT TV TW TZ UA UG US UY UZ VC VE VG VN VU WF WS YE YT ZA ZM)
Class Method Summary collapse
Class Method Details
.find(country_code) ⇒ Object
      28 29 30 31 32 33  | 
    
      # File 'lib/flowcommerce-reference.rb', line 28 def find(country_code) code = country_code.to_s.downcase.gsub(/[^\w]/,"").capitalize return nil unless [2,3].include?(code.length) return nil unless Data.respond_to?(code) Data.send(code) end  | 
  
.find!(country_code) ⇒ Object
      35 36 37  | 
    
      # File 'lib/flowcommerce-reference.rb', line 35 def find!(country_code) find(country_code) || raise(ArgumentError, 'Country "%s" is not found' % country_code) end  |