Skip to content

Commit

Permalink
Update documentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
prodis committed Mar 18, 2017
1 parent b05c822 commit 97fc9d2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Correios CEP

Current available solutions to find Brazilian addresses by zipcode use an HTML form from [Correios web site](http://correios.com.br) to perform it, instead of to use a real API.
Current available solutions to find Brazilian addresses by zipcode use an HTML form from [Correios web site](http://correios.com.br) website to perform it, instead of to use a real API.

The old solution works with an HTTP request to the form, followed by parsing the HTML result page. The huge problem here is when the Correios web site development team decides to modify some HTML element in the result page, even a layout update, it will break the parser logic for result.
The old solution works with an HTTP request to the form, followed by parsing HTML result page. The huge problem here is when the Correios web site development team decides to modify some HTML element in the result page, even a layout update, it will break the parser logic for result.

Correios CEP gem solves this problem, getting data directly from Correios database.
Correios CEP gem solves this problem, retrieving data directly from Correios database.

![Correios Logo](http://prodis.net.br/images/ruby/2015/correios_logo.png)

Expand Down Expand Up @@ -148,7 +148,7 @@ end
### Contributors
- [Gabriel Givigier Guimarães (givigier)](https://github.com/givigier)
- [Maury M. Marques (maurymmarques)](https://github.com/maurymmarques)
- [Rafael Garcia](https://github.com/rafbgarcia)
- [Rafael Garcia (rafbgarcia)](https://github.com/rafbgarcia)


## Contributing to correios-cep
Expand Down
4 changes: 2 additions & 2 deletions correios-cep.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ Gem::Specification.new do |spec|
spec.version = Correios::CEP::VERSION
spec.author = 'Prodis a.k.a. Fernando Hamasaki de Amorim'
spec.email = 'prodis@gmail.com'
spec.summary = 'Correios CEP gem gets updated Brazilian address from a zipcode, directly from Correios database. No HTML parsers.'
spec.summary = 'Correios CEP gem finds updated Brazilian addresses by zipcode, directly from Correios database. No HTML parsers.'
spec.description = spec.summary
spec.homepage = 'http://prodis.blog.br/correios-cep-gem-para-consulta-de-enderecos-por-cep'
spec.homepage = 'https://github.com/prodis/correios-cep'
spec.license = 'MIT'

spec.files = `git ls-files`.split($/)
Expand Down

0 comments on commit 97fc9d2

Please sign in to comment.