0.0
Low commit activity in last 3 years
No release in over a year
Validates CNPJ and test it with matchers in a simple way.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

 Project Readme

ValidatesCnpj

Gem Version Build Status Coverage Status Code Climate

Validates cnpj and test it in a simple way. Supports ruby 2.2+ and rails 3+.

Installation

Add this line to your application's Gemfile:

gem 'validates_cnpj'

And then execute:

$ bundle

Or install it yourself as:

$ gem install validates_cnpj

Usage

Just use as any other validator:

class Company < ActiveRecord::Base
    validates :cnpj, cnpj: true
end

To force the attribute to be masked pass option mask:

class Company < ActiveRecord::Base
  validates :cnpj, cnpj: { mask: true }
end

Testing

Require the matcher:

require 'validates_cnpj/require_a_valid_cnpj_matcher'

Use in your tests:

it { is_expected.to require_a_valid_cnpj } # It will test the attribute :cnpj by default
it { is_expected.to require_a_valid_cnpj(:id) }

Mantainers

@plribeiro3000

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Added some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request