Skip to content

Instantly share code, notes, and snippets.

@madpilot
Created March 26, 2012 15:23
Show Gist options
  • Select an option

  • Save madpilot/2205869 to your computer and use it in GitHub Desktop.

Select an option

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