hi Stack,
I like to observe adding an object to my has_many relation without saving them to the database.
So when I add a LineItem to my Order I like to call Order::calculate_total to update the actual total value.
o = Order.new
o.line_items << LineItem.new # should call calculate_total from order-object
but there are no observers for the build-method of my LineItem.