-
Type: Task
-
Resolution: Done
-
Affects Version/s: None
-
Component/s: None
-
None
here's an example
~~~ruby
person = Person.create addresses: [address_one]
person.addresses = [address_two]
person.save
person.reload.addresses.first # => address_one
~~~
The pull request has a failing spec, but would appreciate any help on figuring out where to make the fix.
It's somewhere around persisting an embeds many relationship.