Damian Janowski
Damian Janowski
Do you see the same behavior when running the server without Shotgun?
Are you on SQS?
Hi @mweibel thanks for submitting a PR! I'm not too keen on deleting files automatically, especially after some action did _not_ happen. For example, think of accidentally leaving the flag...
Still an issue?
In the linked commit you changed the call to `http.get` to this: ``` http.get("htt://www.iheartquotes.com/api/v1/random" ``` Notice the `htt` protocol. Maybe that's a problem?
@gtramontina The flag can be `-c` (continue).
We already have `-s` and `-o` to filter what Cutest should run. `-a` for "all" seems to compete with that. I'm still inclined for `-c` (continue).
Not if you require this file before anything else, which is the most common use case, right?
The constant is created when the module is required, and the array is the result of adding `Gem.path` to `$LOAD_PATH`. So further modifications to `$LOAD_PATH` won't be a problem. Is...
Yes, it's true, this is opinionated based on the fact that I never include my application's directories in `$LOAD_PATH`. I always use `require` for libraries, `require_relative` for code inside my...