Skip to content

Instantly share code, notes, and snippets.

@carllerche
Created September 23, 2009 19:28
Show Gist options
  • Save carllerche/192214 to your computer and use it in GitHub Desktop.
Save carllerche/192214 to your computer and use it in GitHub Desktop.
class User
include DataMapper::Resource
def w0t
User.create
end
end
u1 = nil
u2 = nil
repository :one do
u1 = User.find(1)
end
repository :two do
u2 = u1.w0t
end
u2.repository # => ???
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment