Jon Yurek
Jon Yurek
What's the point of this? We already gitignore the build artifacts. Is it just to not have all the deps in there too?
I have reinstalled coc.nvim as per the config above and it does not fix the problem -- my local tslint.json is still being ignored.
Hi, Chris! Sadly, no, both of those don't work. Through a bit more digging, I found `ps -o pid= -o ppid=` which may lead to some angle, but that's going...
``` gem "rack-ssl-enforcer", :require => "rack/ssl-enforcer", :git => "git://github.com/pelle/rack-ssl-enforcer.git" ```
I did bundle install. That's why it's so weird. The bundle install beforehand on the command line works fine, but the one as part of the specjour before_fork doesn't. Wait,...
No, that didn't seem to help anything. I just get the bundle error twice now.
For reference, this is my .specjour/hooks.rb file: ``` Specjour::Configuration.before_fork = lambda do system('bundle install') end ``` And the error happens if I run the listener with `bundle exec specjour listen`,...
No, I don't get the error. If I try `system("cd /tmp/project && bundle install")` in my hook I do still get the error.
So, I was thinking about this earlier, and I hit upon the idea that this might not be the right approach to this in the first place. If I have...
It appears as though the blame is lying more on bundler, since it won't cache a rack gem... but I can't seem to find out why it only looks in...