Skip to content

Instantly share code, notes, and snippets.

@ahoward
Created December 10, 2008 05:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ahoward/34251 to your computer and use it in GitHub Desktop.
Save ahoward/34251 to your computer and use it in GitHub Desktop.
has_many(:buckets, :dependent => :destroy) do
def self.extend_object buckets
super
ensure
buckets.class # hack to know about .each
buckets.each do |bucket|
bucket.collection = buckets.collection
end
end
def collection
proxy_owner
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment