Created
February 29, 2020 15:45
Revisions
-
mdesantis revised this gist
Feb 29, 2020 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -5,6 +5,7 @@ set -exuo pipefail sudo apt install libreadline-dev wget https://www.openssl.org/source/old/1.0.2/openssl-1.0.2u.tar.gz tar -xzf openssl-1.0.2u.tar.gz cd openssl-1.0.2u -
mdesantis created this gist
Feb 29, 2020 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,18 @@ #!/bin/bash # It assumes [asdf](https://github.com/asdf-vm/asdf) to be installed # and asdf plugin for Ruby to be added set -exuo pipefail wget https://www.openssl.org/source/old/1.0.2/openssl-1.0.2u.tar.gz tar -xzf openssl-1.0.2u.tar.gz cd openssl-1.0.2u ./config --prefix=/opt/openssl-1.0.2u --shared make make test sudo make install RUBY_BUILD_CACHE_PATH=$HOME/.ruby-build-cache \ RUBY_CONFIGURE_OPTS=--with-openssl-dir=/opt/openssl-1.0.2u \ PKG_CONFIG_PATH=/opt/openssl-1.0.2u/lib/pkgconfig \ asdf install ruby 2.3.8