Skip to content

Instantly share code, notes, and snippets.

@rubiojr
Created May 6, 2009 13:39
Show Gist options
  • Save rubiojr/107523 to your computer and use it in GitHub Desktop.
Save rubiojr/107523 to your computer and use it in GitHub Desktop.
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