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?

link|improve this question

73% accept rate
slightly related, concerns: m.onkey.org/active-record-tips-and-tricks – tokland Nov 22 '11 at 19:08
Asked the very same question on SO today and then found this, I'm eager to get the answers :) – RocketR Mar 19 at 14:21
feedback

2 Answers

The ones I am familiar with are from Jeff Casimir (@j3). Here is his presentation from Railsconf 2011. He also created a gem called draper that uses some of those ideas. Ryan Bates made a rails cast using it so hopefully that gives you some ideas.

link|improve this answer
1  
This has little to do with business logic. It's about presentation only. – Arnis L. Dec 1 '11 at 10:50
feedback

As far as I know - railists approach modeling business quite differently. They more or less consciously drive design in data-centric way. It might seem contradictory and bad if we cling to e.g. object orientation.

But, as christians say: "freedom comes from constraints".

If we are able to express our domain in CRUD like fashion, we greatly decrease technical complexity, get REST for free etc.

This blog post explains it better than I do (don't miss presentation by DHH)

And here's some insight from Scott Belware on this topic.


But if you insist and want to experiment a bit, you might want to try data-mapper.
Unfortunately, haven't tried that out yet, so - can't comment.

link|improve this answer
The goal is not to replace ActiveRecord with some other ORM but to make your business logic know nothing about the ORM. – RocketR Mar 19 at 14:27
@RocketR that should not be chased per se. if ORM asks for tiny bit of easy to understand information - it can be better than having additional abstraction layer dedicated for persistence concerns only. – Arnis L. Mar 19 at 20:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.