我正在尝试使用 Ruby 模块(mixins)。
我有 test.rb:
#!/usr/bin/env ruby
require_relative 'lib/mymodule'
class MyApp
include MyModule
self.hallo
end
和 lib/mymodule.rb:
module MyModule
def hallo
puts "hallo"
end
end
很简单的设置。但它不起作用:(:
ruby test.rb
test.rb:8:in `<class:MyApp>': undefined method `hallo' for MyApp:Class (NoMethodError)
from test.rb:6:in `<main>'
我的错误在哪里?