2009-02-02 23:56:17 +01:00
|
|
|
class Card < CouchRest::ExtendedDocument
|
2009-02-03 04:21:32 +01:00
|
|
|
# Include the validation module to get access to the validation methods
|
|
|
|
include CouchRest::Validation
|
2009-02-10 11:15:39 +01:00
|
|
|
# set the auto_validation before defining the properties
|
|
|
|
auto_validate!
|
2009-02-03 04:21:32 +01:00
|
|
|
|
|
|
|
# Set the default database to use
|
2009-05-28 03:16:50 +02:00
|
|
|
use_database DB
|
2009-02-03 04:21:32 +01:00
|
|
|
|
|
|
|
# Official Schema
|
2009-02-02 23:56:17 +01:00
|
|
|
property :first_name
|
|
|
|
property :last_name, :alias => :family_name
|
|
|
|
property :read_only_value, :read_only => true
|
2009-06-08 03:51:31 +02:00
|
|
|
property :cast_alias, :cast_as => 'Person', :alias => :calias
|
|
|
|
|
2009-02-02 23:56:17 +01:00
|
|
|
|
2009-02-04 02:33:31 +01:00
|
|
|
timestamps!
|
|
|
|
|
2009-02-03 04:21:32 +01:00
|
|
|
# Validation
|
2009-10-30 19:07:59 +01:00
|
|
|
validates_presence_of :first_name
|
2009-02-03 04:21:32 +01:00
|
|
|
|
2009-02-02 23:56:17 +01:00
|
|
|
end
|