Skip to content

Instantly share code, notes, and snippets.

@fernandoaleman
Last active July 4, 2025 09:59
Show Gist options
  • Save fernandoaleman/ee3ac6957c2ba4f7d7d33a251d58b191 to your computer and use it in GitHub Desktop.
Save fernandoaleman/ee3ac6957c2ba4f7d7d33a251d58b191 to your computer and use it in GitHub Desktop.

Revisions

  1. fernandoaleman revised this gist Apr 14, 2020. 1 changed file with 6 additions and 4 deletions.
    10 changes: 6 additions & 4 deletions mysql2-mojave.md
    Original file line number Diff line number Diff line change
    @@ -1,9 +1,11 @@
    Problem
    ========================================
    For MacOS Catalina, visit [Install mysql2 on MacOS Catalina](https://gist.github.com/fernandoaleman/12698634824f5d5c00ab57b72ee2ad52)

    # Problem

    Installing `mysql2` gem errors on MacOS Mojave.

    Solution
    ========================================
    # Solution

    Make sure `openssl` is installed on Mac via Homebrew.
    ```
    brew install openssl
  2. fernandoaleman created this gist Oct 2, 2018.
    15 changes: 15 additions & 0 deletions mysql2-mojave.md
    Original 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
    ```