Sha256: a7a77ebbfbed081184040e9ed50a9420ab7f9716b8227923153aabbaccf6ecd7
Contents?: true
Size: 1.58 KB
Versions: 2
Compression:
Stored size: 1.58 KB
Contents
# ValidatesHost [![Gem Version](https://badge.fury.io/rb/validates_host.png)](http://badge.fury.io/rb/validates_host) [![Build Status](https://secure.travis-ci.org/plribeiro3000/validates_host.png?branch=master)](http://travis-ci.org/plribeiro3000/validates_host) [![Dependency Status](https://gemnasium.com/plribeiro3000/validates_host.png)](https://gemnasium.com/plribeiro3000/validates_host) [![Coverage Status](https://coveralls.io/repos/plribeiro3000/validates_host/badge.png?branch=master)](https://coveralls.io/r/plribeiro3000/validates_host) [![Code Climate](https://codeclimate.com/github/plribeiro3000/validates_host.png)](https://codeclimate.com/github/plribeiro3000/validates_host) Validates host attributes and test it in a simple way ## Installation Add this line to your application's Gemfile: gem 'validates_host' And then execute: $ bundle Or install it yourself as: $ gem install validates_host ## Usage Just use like any other validator: ```ruby class Server < ActiveRecord::Base validates :domain_name, domain_name: true validates :host_name, host_name: true validates :ip, ip: true end class Subnet < ActiveRecord::Base validates :value, subnet: true end ``` ## Notes It will load a macher to test automatically if the gem is below shoulda-matchers. ## Mantainers [@plribeiro3000](https://github.com/plribeiro3000) ## Contributing 1. Fork it 2. Create your feature branch (`git checkout -b my-new-feature`) 3. Commit your changes (`git commit -am 'Added some feature'`) 4. Push to the branch (`git push origin my-new-feature`) 5. Create new Pull Request
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
validates_host-1.1.0 | README.md |
validates_host-1.0.0 | README.md |