ぼくです。
サンプル
正しい解釈
class System def aaa user = User.new user.health? end end class User def health? true end end
間違った解釈
class System def health? user.some_kind_of_method end end class User def some_kind_of_method true end end
ぼくです。
class System def aaa user = User.new user.health? end end class User def health? true end end
class System def health? user.some_kind_of_method end end class User def some_kind_of_method true end end