![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
= ValidatesCpfCnpj
== Description
CPF and CNPJ validations for ActiveModel and Rails.
== Installation
As gem:
gem 'validates_cpf_cnpj'
$ 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
Unknown package
We found that validates_cpf_cnpj demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.