class Heroku::OpenSSL::NotInstalledError

Public Instance Methods

installation_hint() click to toggle source
# File lib/heroku/open_ssl.rb, line 75
def installation_hint
  if running_on_a_mac?
    "With Homebrew <http://brew.sh> installed, run the following command:\n$ brew install openssl"
  elsif running_on_windows?
    "Download and install OpenSSL from <http://slproweb.com/products/Win32OpenSSL.html>."
  else
    # Probably some kind of Linux or other Unix. Who knows what package manager they're using?
    "Make sure your package manager's 'openssl' package is installed."
  end
end