Skip to content

Instantly share code, notes, and snippets.

@hadronzoo
Created July 6, 2012 04:05
Show Gist options
  • Save hadronzoo/3057999 to your computer and use it in GitHub Desktop.
Save hadronzoo/3057999 to your computer and use it in GitHub Desktop.
Hook DataMapper::Model#load
module DataMapper
module Model
alias _load load
def load(records, query)
p "here"
r = _load(records, query)
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment