module Country

Public Instance Methods

all() click to toggle source
# File lib/country.rb, line 8
def all
  COUNTRIES.keys
end
names() click to toggle source
# File lib/country.rb, line 4
def names
 all.map{|country| COUNTRIES[country]["name"]}
end