Installing mysql2 gem errors on MacOS Mojave.
Make sure openssl is installed on Mac via Homebrew.
brew install openssl
| def osascript(script) | |
| system 'osascript', *script.split(/\n/).map { |line| ['-e', line] }.flatten | |
| end | |
| osascript <<-END | |
| tell application "Finder" | |
| display dialog "Hello" | |
| end tell | |
| END |