DEV Community

Discussion on: My Ruby Journey: Hooking Things Up

 
edisonywh profile image
Edison Yap

I see! Definitely agree on slimming down. My company's go-to for slimming down model is always Service Objects, so that's what I've been used to.

I think one of these days I should definitely try out concerns! Thanks for sharing :)

Thread Thread
 
tomk32 profile image
Thomas R. Koll

Serivce Objects and PORO is a must when you write a rake tasks. Processing the input and passing it to the service is all my rake tasks do. Much easier to test.