クラスに 2 つの異なるモジュール ライブラリを含めています。両方とも方法がありtest_method
ます。どちらか一方を明示的に使用するにはどうすればよいですか?
class User
include Calculus::Math #a module
include Algebra::Math::Misc #a module
#perform_test is defined in both Calculus::Math and Algebra::Math::Misc
perform_test: 1
#Calculus::Math::perform_test: 1 #This doesn't work
end
ありがとう