(这里是ruby noob ..抱歉,如果我没有正确提出问题)
所以我有两个文件,一个包含一个包含一个类的模块......
文件_alpha.rb:
class alpha
def a_name
do stuff
end
end
文件_beta.rb:
module STUFF_IN_BETA
class beta
def b_name
do more stuff
end
end
end
所以我想在file_alpha中访问'def b_name',但我不确定如何......
class alpha
def a_name
do stuff
b_name() <----HOW TO DO this?
end
end
如何使方法“b_name”可用于 alpha 类?