couchrest_model/lib
Matt Aimonetti dfdcd79a58 Started added a validation mixin
Usage:
  class Invoice < CouchRest::ExtendedDocument
    include CouchRest::Validation

    property :client_name
    property :employee_name
    property :location

    # Validation
    validates_present :client_name, :employee_name
    validates_present :location, :message => "Hey stupid!, you forgot the location"

  end
2009-02-02 19:21:32 -08:00
..
couchrest Started added a validation mixin 2009-02-02 19:21:32 -08:00
couchrest.rb Started on the ExtendedDocument class with features moved to mixins. 2009-02-02 14:51:41 -08:00