Skip to content

Instantly share code, notes, and snippets.

@mzemel
Created September 26, 2014 21:01
Show Gist options
  • Save mzemel/3615c53ca3247b2191f9 to your computer and use it in GitHub Desktop.
Save mzemel/3615c53ca3247b2191f9 to your computer and use it in GitHub Desktop.
META
methods = ['foo', 'bar', 'baz']
methods.each do |method_name|
define_method(method_name) do |arg|
puts arg.upcase
end
end
foo("hi")
# => HI
bar("hello")
# => HELLO
baz("yougettheidea")
# => YOUGETTHEIDEA
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment