Skip to content

felipedmesquita/codigo-postal

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Gem Version

CodigoPostal

Validate, format, and get the corresponding Brazilian state for a given CEP without making network requests.

Installation

Add this line to your application's Gemfile:

gem 'codigo_postal'

And then execute:

$ bundle install

Usage

cep = CodigoPostal.new(1001000)
puts cep.state_code # => 'SP'
puts cep.state_name # => 'São Paulo'
puts cep.to_s # => '01001-000'

You can also compare two CodigoPostal instances using the == operator:

cep1 = CodigoPostal.new(4094050)
cep2 = CodigoPostal.new("04.094-050")
puts cep1 == cep2 # => true

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/felipedmesquita/codigo-postal. Run tests using tldr

tldr

License

The gem is available as open source under the terms of the MIT License.

About

Format and look up states of CEP codes

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages