Steven Davidovitz
Steven Davidovitz
Yeah, I kind of like it, might be really useful.
Oh huh, I guess I thought they would've added that feature to the API too. Hopefully they will.
Essentially, a status API + client?
We sort of enforce one liners [here](https://github.com/zendesk/samson/blob/master/app/models/job.rb#L44-L46). If you can figure out a better way to split out commands, lmk.
I haven't tested it, but you can try a url rewrite inside nginx or passing the environment variable `RAILS_RELATIVE_URL_ROOT=/deploy`: http://guides.rubyonrails.org/configuring.html#deploy-to-a-subdirectory-relative-url-root Rails logs would be helpful.
Is there a specific version of something you need? `Gemfile.lock`'s are generally committed for applications.
Yeah, it's just legacy from our internal practices that we can probably remove. Git LFS might be a good match, but I haven't had enough time to play with it.
cc @AkihiroSuda curious what you think as it affects fuse-overlayfs.
I'm going to agree, because this is the way I've personally seen everyone implement their integrations. However, I don't think using exceptions as control flow is the correct design decision,...
``` I think one reason for that is that (in ruby) it becomes difficult to prevent people from using it wrong, whereas exceptions can't accidentally be ignored. ``` As much...