Skip to content

Instantly share code, notes, and snippets.

@jcoglan
Created January 6, 2009 12:39
Show Gist options
  • Save jcoglan/43790 to your computer and use it in GitHub Desktop.
Save jcoglan/43790 to your computer and use it in GitHub Desktop.
class Module
def include_no_hooks(mod)
include Module.new { include mod }
end
def extend_no_hooks(mod)
extend Module.new { include mod }
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment