Есть ли способ сделать что-то подобное?
a = Struct.new(:c).new(1)
b = Struct.new(:c).new(2)
a.send(:c)
=> 1
b.send(:c)
=> 2
a.send(:c) = b.send(:c)
Последняя строка приводит к ошибке:
syntax error, unexpected '=', expecting $end
a.send(:c) = b.send(:c)
^