Franklin Yu
Franklin Yu
Ok, the `--with-xxx-dir` is implemented in `MakeMakefile#dir_config()`: https://github.com/ruby/ruby/blob/c9c2245c0a25176072e02db9254f0e0c84c805cd/lib/mkmf.rb#L1738-L1801 It is called here: https://github.com/ruby/ruby/blob/c9c2245c0a25176072e02db9254f0e0c84c805cd/ext/openssl/extconf.rb#L17 So in `ext/openssl/extconf.rb` the `find_openssl_library()` should have found the OpenSSL 1.1 library. It didn’t, because `ext/openssl/extconf.rb` has...
Sorry, didn’t had time to do it earlier. Here it is: https://bugs.ruby-lang.org/issues/18763
Depending on your operating system, but when I’m using Ubuntu I’m managing ruby-install and chruby with Linuxbrew (with non-standard installation location because I don’t want to share it with other...
I guess `chruby` also needs to look at both `~/.local/share/rubies` and `~/.rubies`?
> most macOS users do not use or are not used to XDG directories Is there a specific “scenario of frustration” in your mind, if we default to the XDG...
On Windows?
@Vanhecke Wow, good to hear that. It was a nightmare to install Ruby on Windows.
Probably because no one in the team is using Fedora. We need a Fedora user to maintain the package.
I think you can simply make PR to modify the Fedora package spec in this repository. If that get merged, I expect it to trigger a build in the related...
Affected function: https://github.com/postmodern/ruby-install/blob/ea2b8bbff87ea4340d965e72ac3acfb4ab1d1766/share/ruby-install/package_manager.sh#L32-L54 For example with APT we can have ```bash [ `dpkg -l "$@" | grep ii | wc -l` = $# ] ``` In MacPorts ```bash [ `port...