No commit activity in last 3 years
No release in over 3 years
Validates Telephone for Brazil and United States and test it with matchers in a simple way.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

 Project Readme

ValidatesTelephone

Gem Version Build Status Dependency Status Coverage Status Code Climate

Validates telephone and test it in a simple way

Installation

Add this line to your application's Gemfile:

gem 'validates_telephone'

And then execute:

$ bundle

Or install it yourself as:

$ gem install validates_telephone

Basic Usage

It will accept a valid telephone from Brazil or United States by default:

class User < ActiveRecord::Base
    validates :telephone, :telephone => true
end

In case you want it to be a valid telephone for just one place at a time, pass the locale:

class User < ActiveRecord::Base
    validates :br_telephone, :telephone => { :locale => :br }
    validates :usa_telephone, :telephone => { :locale => :usa }
end

Notes

It will load a matcher to test automatically if the gem is defined after shoulda-matchers.

Mantainers

@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