class Geocoder::Result::Google

def country

def country
  if country = address_components_of_type(:country).first
    country['long_name']
  end
end