class Geocoder::Result::Google

def state

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