Skip to content

Instantly share code, notes, and snippets.

@aasmith
Created April 29, 2013 03:17
Show Gist options
  • Save aasmith/5479530 to your computer and use it in GitHub Desktop.
Save aasmith/5479530 to your computer and use it in GitHub Desktop.
An even more "exciting" way to define configuration-style class methods!
def lol(n)
Module.new { define_method(:hoho) { n } }
end
class Bar
extend lol 123
end
Bar.hoho # => 123
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment