Skip to content

Instantly share code, notes, and snippets.

@tcrayford
Created June 29, 2012 15:47
Show Gist options
  • Save tcrayford/3018739 to your computer and use it in GitHub Desktop.
Save tcrayford/3018739 to your computer and use it in GitHub Desktop.
class FuckYouPrivate
def initialize(thing)
@thing = thing
end
def method_missing(message, *args, &block)
@thing.send(message, *args, &block)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment