New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

validates_cpf_cnpj

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

validates_cpf_cnpj

  • 0.2.0
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

= ValidatesCpfCnpj

  • Source: http://github.com/rfs/validates_cpf_cnpj
  • Bugs: http://github.com/rfs/validates_cpf_cnpj/issues

== 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

== Contributing

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

== Maintainers

== License

Released under the MIT license:

FAQs

Package last updated on 29 Jan 2013

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc