Nick Sutterer

Results 675 comments of Nick Sutterer

As far as I know, yes, I want to play with it, maybe we can experiment together?

I use nested concepts all the time, they shouldn't cause you a headache at all. Can you show me what your nested namespaces are? Is `Foo` an AR class, what...

Of course this doesn't work: `module BlogPost::Comment::Cell` :laughing: This is pure Ruby and means that `BlogPost::Comment` has to be defined already. If it isn't, this will work. ```ruby module BlogPost::Comment...

Nope, I mildly disagree. Plurals make things more complicated and hard to memoize, and they're not necessary. Instead, we switched to the "Rails Way" of naming things and abandoned loader:...

Haha, not the plural itself, where to apply it!!! :joy: (routes => plural, controller => plural, model => singular, table => singular, route helper => singular, etc etc etc)

@n-rodriguez That is correct, but development mode gets a lot faster since now Rails' magic is applied where it loads only what you need... at the moment... Also, reloading works...

Hahahaha, but your coverage looks quite well - when will you show me that app??

TBH, I never understood the reasoning behind the "controller operates on a collection" argument. When I create a user, I add to a user collection, but I create *one* user....

@unrooty Hm, ok, now I'm confused. Is the problem that you have a **model** called `Contract`?