I am trying to use Datamapper in a Rails app as an alternative to ActiveRecord.
I've followed the various setup instructions and have Datamapper working in my app.
But one of the first things I noticed that no longer works is this:
<%= f.error_messages %>
I believe this is tied to an ActiveRecord helper - is there an alternative way of reporting validation failures in the View for Datamapper?
Am I likely to encounter many more examples of functionality like this that will require adjustments in my app?
Is this project doable or is it likely to involve a lot of complicated hackery?
Has anyone documented all of the required application adjustments?
I suspect Datamapper is not used widely because I'm finding it hard to find these kinds of simple instructions on Google.