DomainValidator
Adds a DomainValidator to ActiveModel, allowing for easy validation of FQDNs
Installation
Add this line to your application's Gemfile:
gem 'domain_validator'
And then execute:
$ bundle
Or install it yourself as:
$ gem install domain_validator
Usage
Add a domain validation to your ActiveModel enabled class
class User < ActiveRecord::Base
validates :domain, :domain => true
end
Examples
user = User.new :domain => 'mydomain.com'
user.valid? # => true
user.domain = 'invalid*characters.com'
user.valid? # => false
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature) - Add some specs (so I don't accidentally break your functionality in future versions)
- Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create new Pull Request
