Created
July 30, 2008 19:40
-
-
Save dkubb/3311 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
@identity_map = Hash.new do |h,model| | |
resource = h[model.base_model] | |
# set the IM if the resource's model is an ancestor of model | |
h[model] = resource if resource.model >= model | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment