Hi all,
I’m having problems with cloning an ActiveRecord Object. The object
consists of multiple child objects, so when I use the normal clone
method, it only clones the attributes of the parent object.
Could someone help me out telling me how I can clone the child objects
as wel? I have tried like:
tmp.my_items.each do |item|
@clone.my_items.build(item.clone)
end
but that didn’t help. I know it must be something fairly easy, but I
can’t figure it out.
Thank you in advance for the help.