私は最初のRubyモジュールを書いていますが、これがあります。
/app/module/test_modules/test.rb
test.rbは次のようになります。
module TestModules
module Test
def test
puts 'this is a test'
end
end
end
コンソールから次のように呼び出すと、次のようになります。
(main)> TestModule::Test.test
//NoMethodError: private method `test' called for TestModules::Test:Module
test()を表示するにはどうすればよいですか?