PortugueseValidators

This is a simple gem to validate NIB, NIF and BI numbers.

Installation

Add this line to your application's Gemfile:

$ gem 'portuguese_validators'

And then execute:

$ bundle

Or install it yourself as:

$ gem install portuguese_validators

Usage

You will have to include PortugueseValidators and then just add the validators to your model:

class MyModel < ActiveRecord::Base
  include PortugueseValidators

  validates :nif_field, nif: true
  validates :nib_field, nib: true
  validates :bi_field, bi: true
end

Note that these validators are just like the ones that Rails provide you so you can customize the error message or add an :if condition and all that. For example:

class MyModel < ActiveRecord::Base
  include PortugueseValidators

  validates :bi_field, bi: { message: 'é um número errado' }, if: :user_pt?
end

Contributing

  1. Fork it ( http://github.com/rikas/portuguese_validators/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request