Exception: Bundler::Fetcher::CertificateFailureError
- Inherits:
-
HTTPError
- Object
- StandardError
- BundlerError
- HTTPError
- Bundler::Fetcher::CertificateFailureError
- Defined in:
- lib/bundler/fetcher.rb
Overview
This is the error raised if OpenSSL fails the cert verification
Instance Method Summary collapse
-
#initialize(remote_uri) ⇒ CertificateFailureError
constructor
A new instance of CertificateFailureError.
Methods inherited from HTTPError
Methods inherited from BundlerError
Constructor Details
#initialize(remote_uri) ⇒ CertificateFailureError
Returns a new instance of CertificateFailureError.
25 26 27 28 29 30 31 32 33 |
# File 'lib/bundler/fetcher.rb', line 25 def initialize(remote_uri) remote_uri = filter_uri(remote_uri) super "Could not verify the SSL certificate for #{remote_uri}.\nThere" \ " is a chance you are experiencing a man-in-the-middle attack, but" \ " most likely your system doesn't have the CA certificates needed" \ " for verification. For information about OpenSSL certificates, see" \ " http://bit.ly/ruby-ssl. To connect without using SSL, edit your Gemfile" \ " sources and change 'https' to 'http'." end |