Mislav Marohnić
Mislav Marohnić
I'm not sure, but you should try it out and report back with how it went! Keep in mind that bats requires a few system utilities in PATH to function,...
The purpose of dimensions library was originally to be pure-Ruby and without dependencies. I think that adding a WebP dependency is unnacceptabie, especially because it has native extensions. It would...
Relative requires are hard to write and maintain. The common solution to this problem is to have the test runner (in this case, the rake task) put `test/` onto RUBYLIB....
The gem is already available on gemcutter, but it's collectiveidea's fork.
For me it fails on an inbox that has less than 200 emails. See Google's quota limits here: https://script.google.com/dashboard It claims "50000 Gmail operations / day" for Apps for Business...
I wrote my own simpler version of OctoGAS that optimizes a lot of queries over this one, but even that wasn't enough to get rid of query limit failures. I'll...
In my script, I cache the timestamp when the script last run and then grab only threads that were updated since that time. Avoids iterating over threads that have already...
I've upgraded [my "simpler OctoGAS" script](https://gist.github.com/mislav/8ee3b0944aa0f4018d3f) to cache last read message index for all processed threads and, when new replies arrive, process only new messages in a thread rather than...
> seems like anything relying on the cache is eventually going to run in to trouble when the cache is wiped/key is evicted. I set my cache TTL for 2...
Not a fan of this approach. This requires people to manually set a Gmail filter (not sure if one can be set for them programatically). Detecting new messages since the...