Cody Cutrer
Cody Cutrer
Are you able to identify the configuration byte that indicates the presence of this pump?
Well, it wouldn’t change for you as the pump turns on and off. You’ll need to compare your config bytes to the docs and see if you have one byte...
I'm working around this for presumably the same use case for now like this: ```ruby def jnr Java::Jnr end module SdNotify def self.notify(state, unset_env = false) sock = ENV["NOTIFY_SOCKET"] return...
@deivid-rodriguez : any idea when you'll have time to look at this?
I had considered that, and in many ways it seems far more direct and simpler. For some reason I was thinking new sections of the lockfile can only be introduced...
> Yes, treating plugins as regular dependencies is the idea that I have in mind, so that everything that considers the lockfile takes them into account. My understanding is that...
New approach is fleshed out, and it worked very well. The only thing I couldn't accomplish was eliminating the plugin-only run through the Gemfile, since there may be source type...
> Normally the "BUNDLED WITH" version of Bundler that created the lockfile will be used, but that's not always the case, so it can happen. Oh, I know that all...
I implemented it as a feature flag overridden by a setting, so that it will automatically enable with Bundler 3. It will also do it if any plugins are already...
Rebased and all comments addressed. I ran most specs locally, so hopefully I got all the changes with the spec infrastructure changes.