Skip to content

Instantly share code, notes, and snippets.

@madpilot
Created March 26, 2012 15:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save madpilot/2205869 to your computer and use it in GitHub Desktop.
Save madpilot/2205869 to your computer and use it in GitHub Desktop.
class MyClass
def my_method(param)
puts "this is my method #{param}"
end
end
my_class = MyClass.new
x = my_class.method :my_method
x.("hello")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment