validates_as_phone on GitHub
August 9th, 2008A second plugin to GitHub today.
validates_as_phone is a Ruby on Rails plugin that provides strict validation for phone numbers. At the moment, only phone numbers in Australia are supported. This will still be extended to support classifications and areas in the future.
validates_as_phone
==================
Strict validation module for phone numbers that supports classifications and
areas.
= General usage
== Installation
You can install the plugin the traditional way. Go to your application root
and do:
script/plugin install git://github.com/kristinalim/validates_as_phone.git
== Validate your model attributes
Example:
class Person < ActiveRecord::Base
validates_as_phone :phone, :allow_blank => true, :set => true
end
= License
Written by Kristina Lim (http://i-think.com.ph/kristina/)
Copyright (c) 2008 Syndeo Media
http://syndeomedia.com
= Contributing
If you wish to contribute to the project, you may contact the author through:
‘kristinasyndeomediacom’.insert(8, ‘@’).insert(20, ‘.’)
= Acknowledgements
This plugin is named after the validates_as_phone plugin of Jerrod Blavos
(http://code.google.com/p/validates-as-phone/). Admittedly, this plugin was
built over the latter, but as the purposes of this plugin is more complex than
that of the minimal one, practically all of the code has been written over by
now.