I am working on a testing framework for the software that my company writes. Our product is web based and After I run a RESTful request I want to process the results. I want t
You want Validatable: sudo gem install validatable
sudo gem install validatable
class Person include Validatable validates_presence_of :name attr_accessor :name end
Also, Validatable does not have a dependency on ActiveSupport.