Fabian Schwahn
Fabian Schwahn
Just stopping by to second this. It's counter-intuitive that there's such a special case for `.env.local`. In my case, database / redis ports live in `.env.local`, which applies to all...
I'm doing a lot of filtering logic in my apps, and I'd often run into bugs when combining several scopes which do joins. I've just found this gem yesterday, and...
That sounds good! Do you have any data on how this performs compared to joins? Especially with > 1 million rows? Is it faster? Is it slower? Is it comparable?...
@brianreavis We're now getting reports for github for an old version of minimist, which is required by optimist (which is unmaintained) which in turn you depend on for the binary...
I did a simple benchmark, and sorting in DB (using `in_order_of`) is noticeably slower: ```ruby require "benchmark/ips" id_list = 100.times.map { User.create!.id }.shuffle Benchmark.ips do |x| x.report("sort in ruby") {...
Just some more info: this didn't happen in 5.1.4, so it must be some kind of regression. I don't know about the versions between (5.1.5, 5.1.6). Also, this happens deterministically...
I'm not quite sure how I can delete these lines? Fork the repo? Or is there an easier way?
I don't believe this possible on Heroku, or can you point me in the right direction?
@xtagon this is a beta feature, but you can ssh into running instances since March, see https://devcenter.heroku.com/articles/heroku-exec . I haven't had the time yet to try it.
@xtagon maybe editing the files in a running dyno doesn't fix the problem because the code is already loaded? I'm not familiar with how passenger loads its ruby code, but...