0
votes
Can you force activerecord associations to update without saving them?
If you start off like this:
client1 = the_server.clients.build(:name => 'a client', ...)
Then you should get what you're looking for I think.
EDIT:
…
0
votes
Rails after_save callback to create an associated model based on column_changed?
This may have changed since the question was posted, but the after_save callback should have the *_changed? dynamic methods available and set correctly:
class Order
a …
