From 012a388d9d4289f60df1d85da0c5a64944b3b7dd Mon Sep 17 00:00:00 2001 From: Andre Arko Date: Tue, 11 Nov 2014 17:30:32 -0800 Subject: Update SSL certificates, again. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Why did openssl give me a certificate that doesn’t work to connect? :( Also remove the intermediate certificates that aren’t actually needed to validate a connection to the server. Finally, include tests to make sure that Bundler can connect to each of the important Rubygems hosts using only the vendored certificates (h/t @luislavena for an example test). --- spec/spec_helper.rb | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'spec/spec_helper.rb') diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index bef35a1aa9..774f10cecb 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -76,6 +76,12 @@ RSpec.configure do |config| config.filter_run_excluding :rubygems => "2.2" end + if ENV['RGV'] == "master" + config.filter_run :rubygems_master => true + else + config.filter_run_excluding :rubygems_master => true + end + config.filter_run :focused => true unless ENV['CI'] config.run_all_when_everything_filtered = true config.alias_example_to :fit, :focused => true -- cgit v1.2.1