Maxime Lapointe

Results 49 comments of Maxime Lapointe

@yoelblum No i didn't show it to the Rails team. In 2015, someone did a PR for similar feature (not as fleshed out in the details) and it got refused...

Glad you find it helpful! This is essentially the same codebase that deals with ActiveRecord 4.1 all the way to ActiveRecord 5.2. I'm not doing some deep hacks of changing...

SQL-wise, it should normally be either comparable or faster to use `EXISTS`. I don't personally have data on this, but you can find comparisons online of `SQL JOIN vs EXISTS`....

@pjungwir Hey, thank you for the feedback! Glad you find the gem useful. > Having a gem to do it for me would be so much better! "Would be" implies...

I see what you mean about not needing alias. But that only works if the only "reused" name is the last one. Imagine a weird relation that goes `users ->...

Good question. While not as clean as normal usage. I guess you could use `where_assoc_exists_sql`, which returns the SQL for the condition. (`where_assoc_exists` is just a wrapper for that to...

Just wanted to say that the reason the build fails is because Nokogiri 1.6.6.2 isn't supported for 1.8.7 it seems.

I have also just did update, which brought me to git 2.29 and git-gui git-gui version 0.21.0.78.g38c2a. I instantly noticed a change to both background and font color. The color...

Thanks for the quick feedback. I tried using your 2nd point and it seemed to have no effect, or barely any effect, and not on those colors. I also tried...

SimpleCov has system to merge coverage results. Ideally, you should be running your suite on multiple versions and merging the results. This should be automatic if you run each suite...