There's been a recent surge in the Ruby community of blog posts, tweets, and comments on the benefits of using better OO design, and specifically separating business logic from persistence logic. Especially for larger apps, I see this as excellent advice.
http://solnic.eu/2011/08/01/making-activerecord-models-thin.html http://blog.steveklabnik.com/2011/09/06/the-secret-to-rails-oo-design.html http://avdi.org/devblog/2011/11/15/early-access-beta-of-objects-on-rails-now-available-2/
I'm interested to find a complete example Rails app where the business logic and been completely decoupled from the ORM (ActiveRecord or otherwise). Specifically, I'm interesting in seeing how one might handle DB constraints, business rule validation, parameter cleaning, service classes, etc.
Anyone know of an open-source app like this?