条件付きロジックに基づいて複数の他のオブジェクトの1つに関数または一連の関数を委譲できますか?条件付きでRubyでアクティブなレコードを委譲する方法
例:この場合
class Item
has_one :thing
has_one :other_thing
delegate :foo,
:bar
to: :[thing or other_thing]
end
、私は事に委任、またはいくつかの条件付きロジックに基づいて他の事することのいずれかにアクションfooとbarをしたいと思います。
おそらく関連:Active Record with Delegate and conditions