Search Results

1
vote
2answers
136 views

How to Dynamically Determine a Method Name in Ruby

In Ruby, is there a way to determine the name of a method, akin to how the "class" method returns an object's type? For example: def example_method puts method_name end # …