Skip to content

Instantly share code, notes, and snippets.

@breim
Created March 13, 2015 18:45
Show Gist options
  • Save breim/7733f703a95233efae76 to your computer and use it in GitHub Desktop.
Save breim/7733f703a95233efae76 to your computer and use it in GitHub Desktop.
Controler busca CEP
# Tu vai ter que configurar uma route para chamar aqui, que vai ser o mesmo link que está setado no javascript no arquivo anterior
def busca_por_cep
render :json => BuscaEndereco.cep(params[:cep])
rescue RuntimeError
render :json => ["", "zipcode nao encontrado", "", "", ""].to_json
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment