Skip to content

chitchats/common_validators

 
 

Repository files navigation

CommonValidators

Build Status Gem Version

Collection of common validators for Rails applications.

RubyDoc Documentation

Usage

In your ActiveRecord models include one more validations on your model's fields.

validates :email,         email_format: true, presence: true
validates :date,          date_format: true
validates :amount,        money_format: { exclude_cents: true }
validates :phone_number,  phone_number_format: true
validates :slug,          slug_format: true
validates :url,           url_format: true

Installation

Add this line to your application's Gemfile:

gem 'common_validators'

And then execute:

$ bundle

Or install it yourself as:

$ gem install common_validators

Contributing

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

About

Common validators for Rails applications

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Ruby 84.4%
  • HTML 12.3%
  • JavaScript 1.7%
  • CSS 1.6%