Skip to content

Repository files navigation

Validators

Build StatusCode ClimateTest Coverage

Add some nice ActiveModel/ActiveRecord validators.

Installation

gem install validators

Then add it to your Gemfile:

gem"validators"

Usage

validates_email_format_of

classUser < ActiveRecord::Base# old fashionvalidates_email_format_of:email# alternative wayvalidates:email,:email=>trueend

By default, it rejects disposable e-mails (e.g. mailinator). This loads ~15kb, but you can disable this validation by setting disposable: true.

classUser < ActiveRecord::Basevalidates_email_format_of:email,disposable: trueend

validates_url_format_of

classUser < ActiveRecord::Basevalidates_url_format_of:site# validates TLD against list of valid TLD.# Loads ~5kb of text.validates_url_format_of:site,tld: trueend

validates_ownership_of

classTask < ActiveRecord::Basebelongs_to:userbelongs_to:categoryvalidates_ownership_of:category,:with=>:userenduser=User.find(1)another_user=User.find(2)user_category=user.categories.firstanother_user_category=another_user.categories.firsttask=user.tasks.create(:category=>user_category)task.valid?#=> truetask=user.tasks.create(:category=>another_user_category)task.valid?#=> false

validates_ip_address

classServer < ActiveRecord::Basevalidates_ip_address:addressvalidates_ip_address:address,:only=>:v4validates_ip_address:address,:only=>:v6end

validates_datetime

classServer < ActiveRecord::Basevalidates_datetime:starts_atvalidates_datetime:ends_at,:after=>:starts_at,:if=>:starts_at?validates_datetime:ends_at,:after=>:nowvalidates_datetime:ends_at,:before=>:todayvalidates:starts_at,:datetime=>trueend

validates_cpf_format_of

classUser < ActiveRecord::Basevalidates_cpf_format_of:documentend

validates_cnpj_format_of

classUser < ActiveRecord::Basevalidates_cnpj_format_of:documentend

validates_hostname

Rules:

  • maximum length of hostname is 255 characters
  • maximum length of each hostname label is 63 characters
  • characters allowed in hostname labels are a-z, A-Z, 0-9 and hyphen
  • labels do not begin or end with a hyphen
  • labels do not consist of numeric values only
  • TLD validation (optional)
classServer < ActiveRecord::Basevalidates_hostname:hostnamevalidates_hostname:hostname,tld: trueend

Maintainer

License

(The MIT License)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

Some ActiveModel/ActiveRecord validators

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages