CommonValidators
Collection of common validators for Rails applications.
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
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request