Postmodern
Postmodern
That doesn't seem right! In ruby-install 0.9.3 I changed the logic of how `brew` is executed as a regular user to use `$SUDO_USER`, which should be the same as your...
The `sudo: error initializing audit plugin sudoers_audit` error also makes me think there's something up with `sudo`. Did you recently upgrade macOS or add something to `/etc/sudo.conf`, `/etc/sudoers`, or `/etc/sudoers.d`?
I am all for ditching OpenSSL 1.x support in favor of 3.x. However, Ruby 3.0 was the last Ruby version that still use OpenSSL 1.1. Ruby 3.0 reaches EoL [next...
Tagging this for 0.10.0 and merged into the [0.10.0 branch](https://github.com/postmodern/ruby-install/tree/0.10.0).
OpenSSL 1.1.1 has officially reached EoL. https://www.openssl.org/blog/blog/2023/03/28/1.1.1-EOL/
I have recently added some logic to dynamically install the `[email protected]` or `openssl@3` homebrew package depending on the version of Ruby. See a37e332e055da91db5fb053a3d94ebb0f219043d This will be released shortly in ruby-install...
Decided to change directions on this and keep the `openssl@3` vs. `[email protected]` logic based on the ruby version for a while longer. I also decided to convert the `dependencies.txt` into...
I disabled many of the erroneous ShellCheck rules that were giving false positives, and fixed a few legitimate issues as well. Feel free to help out with the remaining linting...
Looking at some of the ShellCheck errors, I think `SC2155` might be wrong here: ``` In share/ruby-install/checksums.sh line 33: local output="$(grep " $file" "$checksums")" ^----^ SC2155: Declare and assign separately...
@route I want to dump out the cookies used by the current page to a file, so I can load the cookies into other tools or back into a new...