-
-
Save victorpre/2114f507edbe5536138fc41d84d050d3 to your computer and use it in GitHub Desktop.
Revisions
-
victorpre revised this gist
Sep 6, 2022 . 1 changed file with 1 addition and 1 deletion.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 @@ -11,5 +11,5 @@ brew install openssl Install `mysql2` gem. ``` gem install mysql2 -v '0.5.4' -- --with-ldflags=-L/opt/homebrew/opt/openssl@3/lib --with-cppflags=-I/opt/homebrew/opt/openssl@3/include ``` -
fernandoaleman created this gist
Oct 2, 2018 .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,15 @@ Problem ======================================== Installing `mysql2` gem errors on MacOS Mojave. Solution ======================================== Make sure `openssl` is installed on Mac via Homebrew. ``` brew install openssl ``` Install `mysql2` gem. ``` gem install mysql2 -v '0.5.2' -- --with-ldflags=-L/usr/local/opt/openssl/lib --with-cppflags=-I/usr/local/opt/openssl/include ```