Jean Boussier
Jean Boussier
https://github.com/basecamp/console1984/blob/f0f2efd489b94be8bbc9bcfb6bff778be3885d78/lib/console1984/command_validator/.command_parser.rb#L43 `const_name` is a symbol here, so `Symbol#to_s` returns a frozen string when `symbol-fstring` is present, which is expected. Amusingly that the first ever recorded incompatibility I'm aware of with...
That sounds more like `resolv-replace` that should be updated to also patch `Scoket.tcp` https://github.com/ruby/resolv-replace/blob/master/lib/resolv-replace.rb
Yeah, I only skimmed the initial issue description, and this isn't a bug, it's how it's supposed to work. `stub_const` has to restore the original value, hence it can't let...
> I'm sure it's something about how it presents the class name, but I was expecting the output to look like an anonymous class (e.g. `[#]`) Ruby `Module` instances get...
I don't plan to support extensions in `redis-rb`, the default commands are already a very large API to maintain. It's best to stay as a separate gem. Additionally this one...
Doesn't seem to work that well, as now compose is pulling as part of `up`. The doc suggest there is an option to disable that: ``` --pull policy Pull image...
> I suspect we need `missing` here, Arf, https://docs.docker.com/compose/compose-file/05-services/#pull_policy suggest it's the default behavior. It's really weird I'd expect all nodes to already have these images in cache and not...
Hum, wait: ``` docker-compose -f .buildkite/docker-compose.yml -p buildkite018d8da4653043ae9bbd12e7145077ce up -d --scale default=0 default Creating network "buildkite018d8da4653043ae9bbd12e7145077ce_default" with the default driver Pulling default (973266071021.dkr.ecr.us-east-1.amazonaws.com/builds:ruby-3-3-018d8da2-6d6b-4eb1-815f-4ce77a885048)... ruby-3-3-018d8da2-6d6b-4eb1-815f-4ce77a885048: Pulling from builds ``` So each...
Right, I figured that a bit later, but that confused me because I wasn't expecting compose to deal with that (but again, I'm super unfamiliar with compose). It seems like...
> I don't think it adds time It depends. When you `docker run foo` if the `foo` tag exist locally, there's no pull. If you `docker pull foo`, it's going...