Skip to content

Instantly share code, notes, and snippets.

@kennethkalmer
Created December 10, 2009 07:35
Show Gist options
  • Save kennethkalmer/253179 to your computer and use it in GitHub Desktop.
Save kennethkalmer/253179 to your computer and use it in GitHub Desktop.
# Mission, define relationships in a 'web fashion'
#
# {
# "links" : [
# { "rel" => "other_document", "href" => "1" },
# { "rel" => "other_document", "href" => "2" }
# ]
# }
#
class SomeDocument < CouchRest::ExtendedDocument
related_to do
some :other_documents
end
end
class OtherDocument < CouchRest::ExtendedDocument
related_to do
a :some_document
end
end
class Project < ActiveRecord::Base
related_to do
some :notes
end
end
class Note < CouchRest::ExtendedDocument
related_to do
a :project, :via => :active_record, :class => 'Project'
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment