Skip to content

Instantly share code, notes, and snippets.

@rubiojr
Created May 6, 2009 13:39
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
class Vlan < CouchFoo::Base
property :vid, Integer
property :name, String property :description, String
property :network, String
property :environment, String
end
Vlan.create :vid => 54, :name => 'foobar'
Vlan.find_by_vid 54
Vlan.all.each do |v|
puts v.vid
end
~
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment