lib/geolookup/country.rb in geolookup-0.5.4 vs lib/geolookup/country.rb in geolookup-0.5.5

- old
+ new

@@ -8,20 +8,20 @@ require 'yaml' module Geolookup module Country - COUNTRY_NAME_TO_CODE_FILE = "./lib/data/COUNTRY_NAME_TO_CODE.yml" - COUNTRY_CODE_TO_NAME_FILE = "./lib/data/COUNTRY_CODE_TO_NAME.yml" - COUNTRY_LAT_LONG_FILE = "./lib/data/COUNTRY_LAT_LONG.yml" + COUNTRY_NAME_TO_CODE_FILE = "COUNTRY_NAME_TO_CODE.yml" + COUNTRY_CODE_TO_NAME_FILE = "COUNTRY_CODE_TO_NAME.yml" + COUNTRY_LAT_LONG_FILE = "COUNTRY_LAT_LONG.yml" @country_name_to_code @country_code_to_name @country_lat_long - + def self.name_to_code(country_name) - @country_name_to_code ||= Geolookup.load_hash_from_file(COUNTRY_NAME_TO_CODE_FILE) + @country_name_to_code ||= Geolookup.load_hash_from_file(COUNTRY_NAME_TO_CODE_FILE) @country_name_to_code[country_name.to_s.upcase] end def self.code_to_name(country_code) @country_code_to_name ||= Geolookup.load_hash_from_file(COUNTRY_CODE_TO_NAME_FILE) @@ -30,10 +30,10 @@ #def self.code_to_lat_long(country_code) # LAT_LONG[country_code.to_s.upcase] #end - def self.name_to_lat_long(country_name) + def self.name_to_lat_long(country_name) @country_lat_long ||= Geolookup.load_hash_from_file(COUNTRY_LAT_LONG_FILE) @country_lat_long[country_name.to_s.upcase] end end end