class Geocoder::Result::Google

def country_code

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