假设我有一个class A
,其方法为aa
:
class A
def aa
puts '..aa method..'
end
end
我还有另一个class B
,其方法为bb
:
class B
def bb
a = A.new
puts a.aa
end
end
现在我必须找出属于其他类(B)的属于类(A)的方法(aa)的位置。
注意:我有一个正在服务器上运行的Rails项目。我无法对该项目进行更改。从将通过[railsRunner]运行的ruby脚本中,我必须找出项目中任何类下正在使用任何其他类方法的所有方法。