To perform a special kind of validation in an ActiveRecord-based model, I need to manually perform the update_attributes steps: load (params) && & save
But when I try to call "load" on my Model instance (mymodel.load (params)), it calls "load" on ActiveSupport, trying to load the file.
Can I tell Rails to use the ActiveRecord method?
Thanks!
Relationship Mark
source share