8 lines
131 B
Ruby
8 lines
131 B
Ruby
|
class Snippet < CouchFoo::Base
|
||
|
|
||
|
property :name, String
|
||
|
property :content, String
|
||
|
|
||
|
validates_presence_of :name
|
||
|
|
||
|
end
|