Skip to content

Instantly share code, notes, and snippets.

@sandro
Created July 6, 2009 22:00
Show Gist options
  • Save sandro/141720 to your computer and use it in GitHub Desktop.
Save sandro/141720 to your computer and use it in GitHub Desktop.
module Methodize
def method_missing(sym, *args, &block)
self.class.class_eval do
define_method(sym) { args.first }
end
end
end
__END__
module A
extend Methodize
height "70px"
end
puts A.height
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment