Giter Site home page Giter Site logo

validates_cpf_cnpj's Introduction

ValidatesCpfCnpj

Description

CPF and CNPJ validations for ActiveModel and Rails.

Installation

As gem:

# in Gemfile
gem 'validates_cpf_cnpj'

# Run bundler
$ bundle install

Usage

Validating a CPF attribute:

class Patient < ActiveRecord::Base
  validates_cpf :cpf_attr
  # or
  validates :cpf_attr, :cpf => true
end

Validating a CNPJ attribute:

class Supplier < ActiveRecord::Base
  validates_cnpj :cnpj_attr
  # or
  validates :cnpj_attr, :cnpj => true
end

Validating an attribute that can store both CPF or CNPJ:

class Customer < ActiveRecord::Base
  validates_cpf_or_cnpj :cpf_cnpj_attr
  # or
  validates :cpf_cnpj_attr, :cpf_or_cnpj => true
end

Regular validation options:

:allow_nil   - Allows a nil value to be valid
:allow_blank - Allows a nil or empty string value to be valid
:if          - Executes validation when :if evaluates true
:unless      - Executes validation when :unless evaluates false
:on          - Specifies validation context (e.g :save, :create or :update). Default is :save
:message     - Sets a custom message to be passed to the attribute (default is 'is invalid')

CPF and CNPJ formatting:

When you run the validation on an attribute, if the value is a valid CPF or CNPJ, it will be formatted as so:
- valid CPF will be returned as 999.999.999-99
- valid CNPJ will be returned as 99.999.999/9999-99

Contributing

Feel free to fork, fix and send me a pull request.

Maintainers

License

Released under the MIT license:

validates_cpf_cnpj's People

Contributors

mauriciomoraes avatar dhyegocalota avatar brodock avatar phelipe-truckpad avatar joaohornburg avatar rfs avatar wendelscardua avatar

Stargazers

Rafa avatar Uilton Dutra avatar  avatar

Watchers

Rafa avatar  avatar

Forkers

aamaral

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.