Problem
A magic meta method has been declared but you canโt find the source of the declaration to see what it does.
Solution
method(:method_name).owner
pointed out which class declared the method. This helped me realise that the method was part of a Gem
method(:method_name).source_location
wasnโt as useful with the output being ["(eval)", 5]