On this page
class Bundler::Fetcher::SSLError
This is the error raised when a source is HTTPS and OpenSSL
didn't load
Public Class Methods
# File lib/bundler/fetcher.rb, line 34
def initialize(msg = nil)
super msg || "Could not load OpenSSL.\n" \
"You must recompile Ruby with OpenSSL support or change the sources in your " \
"Gemfile from 'https' to 'http'. Instructions for compiling with OpenSSL " \
"using RVM are available at rvm.io/packages/openssl."
end
Calls superclass method
Exception::new
Ruby Core © 1993–2017 Yukihiro Matsumoto
Licensed under the Ruby License.
Ruby Standard Library © contributors
Licensed under their own licenses.