-
-
Save joebutler2/1dac1934c94d07f9e70e9a80ea5cf251 to your computer and use it in GitHub Desktop.
Revisions
-
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 ```