无法安装 rails-assets-tether
Can't install rails-assets-tether
当我尝试安装 rails-assets-tether
时,出现错误。
Retrying fetcher due to error (2/4): Bundler::Fetcher::CertificateFailureError Could not verify the SSL certificate for http://rails-assets.org/.
There 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://------/ruby-ssl. To connect without using SSL, edit y
our Gemfile sources and change 'https' to 'http'.
这是我的 Gemfile 的一部分:
# Bootstrap
gem 'bootstrap', '~> 4.0.0.alpha3'
source 'https://rails-assets.org' do
gem 'rails-assets-tether', '>= 1.1.0'
end
将 https
更改为 http
对我不起作用。
我正在使用 Windows 10
这是这个问题的解决方案
https://gist.github.com/fnichol/867550
当我尝试安装 rails-assets-tether
时,出现错误。
Retrying fetcher due to error (2/4): Bundler::Fetcher::CertificateFailureError Could not verify the SSL certificate for http://rails-assets.org/.
There 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://------/ruby-ssl. To connect without using SSL, edit y
our Gemfile sources and change 'https' to 'http'.
这是我的 Gemfile 的一部分:
# Bootstrap
gem 'bootstrap', '~> 4.0.0.alpha3'
source 'https://rails-assets.org' do
gem 'rails-assets-tether', '>= 1.1.0'
end
将 https
更改为 http
对我不起作用。
我正在使用 Windows 10
这是这个问题的解决方案 https://gist.github.com/fnichol/867550