Skip to content

Instantly share code, notes, and snippets.

@davbre
Created March 28, 2013 20:54
Show Gist options
  • Save davbre/5266699 to your computer and use it in GitHub Desktop.
Save davbre/5266699 to your computer and use it in GitHub Desktop.
DataMapper save errors, inspection
DataMapper::Model.raise_on_save_failure = true
begin
[your_object_name].save
rescue DataMapper::SaveFailureError => e
puts e.resource.errors.inspect
end
@waiting-for-dev
Copy link

thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment