module MyMod
def apple
puts "I AM APPLES!"
end
end
#/////////////////////////////////
include MyMod
apple
我是否需要安装任何宝石?
错误消息如下:
uninitialized constant MyMod(NameError)
答案 0 :(得分:0)
module MyMod
def apple
puts "I AM APPLES!"
end
end
class MyClass
include MyMod
end
MyClass.new.apple