Class: PhoneCountry
Instance Attribute Summary collapse
-
#area_code ⇒ Object
Returns the value of attribute area_code.
-
#char_2_code ⇒ Object
Returns the value of attribute char_2_code.
-
#country_code ⇒ Object
Returns the value of attribute country_code.
-
#name ⇒ Object
Returns the value of attribute name.
Class Method Summary collapse
Instance Method Summary collapse
Instance Attribute Details
#area_code ⇒ Object
Returns the value of attribute area_code
1 2 3 |
# File 'lib/phone_country.rb', line 1 def area_code @area_code end |
#char_2_code ⇒ Object
Returns the value of attribute char_2_code
1 2 3 |
# File 'lib/phone_country.rb', line 1 def char_2_code @char_2_code end |
#country_code ⇒ Object
Returns the value of attribute country_code
1 2 3 |
# File 'lib/phone_country.rb', line 1 def country_code @country_code end |
#name ⇒ Object
Returns the value of attribute name
1 2 3 |
# File 'lib/phone_country.rb', line 1 def name @name end |
Class Method Details
.find_by_country_code(code) ⇒ Object
20 21 22 |
# File 'lib/phone_country.rb', line 20 def self.find_by_country_code(code) @@all[code] end |
.load ⇒ Object
4 5 6 7 8 9 10 11 12 13 14 |
# File 'lib/phone_country.rb', line 4 def self.load return @@all if @@all.present? data_file = File.join(File.dirname(__FILE__), '..', 'data', 'phone_countries.yml') @@all = {} YAML.load(File.read(data_file)).each_pair do |key, c| @@all[key] = PhoneCountry.new(c[:name], c[:country_code], c[:char_2_code], c[:area_code]) end @@all end |