Created
December 10, 2009 07:35
-
-
Save kennethkalmer/253179 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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