On May 12, 2009, at 2:26 PM, TomRossi7 wrote:
>
> Is there an easy way to access the ActiveRecord
> @new_record_before_save attribute?
>
> Thanks,
> Tom
Well, it depends on what you mean by easy.
model.instance_variable_get('@new_record_before_save') will work
If you're using an older ActiveRecord and you are trying to tell the
difference between a find_or_create_by_..., You can "rely" on the
deprecated model.new_record?.nil? to know that it was a find
(model.new_record? == false means it was actually a create)
-Rob
Rob Biedenharn http://agileconsultingllc.com
[email protected]
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby
on Rails: Talk" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---