RoR gems: validates_date_time
= validates_date_time This plugin adds the ability to do stricter date and time checking with ActiveRecord. The validators can be used to parse strings into Date and Time objects as well as restrict an attribute based on other dates or times.
class Person < ActiveRecord::Base validates_date :date_of_birth validates_time :time_of_birth validates_date_time :date_and_time_of_birth end
== Installation script/plugin install http://svn.viney.net.nz/things/rails/plugins/validates_date_time
