class Geocoder::Result::PostcodeAnywhereUk

def city

def city
  # is this too big a jump to assume that the API always
  # returns a City, County as the last elements?
  city = @data['Location'].split(',')[-2] || blank_result
  city.strip
end