Skip to content

Instantly share code, notes, and snippets.

@inre
Created July 12, 2012 07:14
Show Gist options
  • Save inre/3096413 to your computer and use it in GitHub Desktop.
Save inre/3096413 to your computer and use it in GitHub Desktop.
Simple module stacking
#DIS IS SPARTA!
class Module
def method_missing(*args, &block)
const_get(*args)
rescue
super(*args, &block)
end
end
module M
module A
end
end
p M.A
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment