我有一个带有类方法的模型。
喜欢:
class School < ActiveRecord::Base
def self.mymethod
end
def instance_something
end
end
如何在 Ruby 中找到类方法的 source_location?
如果我想要“instance_something”的源位置,我会这样做
School.new.method(:instance_something).source_location
但我不能用类方法做到这一点。
有什么帮助吗?