次の例があります
class Test
configure_helper
end
module ConfigureHelper
module ClassMethods
def configure_helper
end
end
end
ConfigureHelper には、モジュールが含まれていた ClassMethods でクラスを拡張する機能がいくつかあります。
問題は、次のコードを使用してモジュールを含める場合です
Test.send :include, ConfigureHelper
Test クラスがロードされ、configure_helper に対して NoMethodError が発生します。
configure_helper が呼び出されないように configure_helper メソッドをアタッチする方法はありますか?