Skip to content

Instantly share code, notes, and snippets.

@dmolesUC
Created August 27, 2020 16:45
Show Gist options
  • Save dmolesUC/8d3f065d3d186b7361a107858a2673c3 to your computer and use it in GitHub Desktop.
Save dmolesUC/8d3f065d3d186b7361a107858a2673c3 to your computer and use it in GitHub Desktop.
Installing Ruby 1.8.7 on macOS Catalina with Homebrew and 0penSSL 1.0

Cf. this StackOverflow answer:

brew install rbenv/tap/openssl@1.0

rvm reinstall 1.8.7-head --with-openssl-dir='/usr/local/Cellar/openssl@1.0/1.0.2t' \
  --with-openssl-lib='/usr/local/Cellar/openssl@1.0/1.0.2t/lib' \
  --with-openssl-include=/usr/local/Cellar/openssl@1.0/1.0.2t/include

rvm use 1.8.7

gem install bundler --version 1.3.6
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment