codeclimate-test-reporter 0.5.2 → 0.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8cd8a8c9a256eaa43954362eb4464ec24052339f
|
4
|
+
data.tar.gz: 27dfdf9c5b98659eb38a466bdae29ff3e735f27d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bbd7b0ca4af91a6a2e07fb1674987565ee0201a3f57fced7191b68950728dfd1e3502f2aa6cf3cc5e6c0d603668533fedcb75d1abb5f1e1ba9cc3bfc56b455ef
|
7
|
+
data.tar.gz: 328c8b4f3575f1a513e0858c5b03090216ad8776ab342220bebed58c95e2f0fa13a8fd72a75d2f8e2d21e1d1fa99870b7cb52d1b4dfb83dc0a360486951e2c9c
|
@@ -79,7 +79,7 @@ module CodeClimate
|
|
79
79
|
if uri.scheme == "https"
|
80
80
|
http.use_ssl = true
|
81
81
|
http.verify_mode = OpenSSL::SSL::VERIFY_PEER
|
82
|
-
http.ca_file =
|
82
|
+
http.ca_file = ca_file
|
83
83
|
http.verify_depth = 5
|
84
84
|
end
|
85
85
|
http.open_timeout = CodeClimate::TestReporter.configuration.timeout
|
@@ -95,6 +95,10 @@ module CodeClimate
|
|
95
95
|
sio.string
|
96
96
|
end
|
97
97
|
|
98
|
+
def ca_file
|
99
|
+
ENV["SSL_CERT_FILE"] ||
|
100
|
+
File.expand_path("../../../../config/cacert.pem", __FILE__)
|
101
|
+
end
|
98
102
|
end
|
99
103
|
end
|
100
104
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: codeclimate-test-reporter
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.6.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Bryan Helmkamp
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-06-
|
11
|
+
date: 2016-06-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: simplecov
|
@@ -144,7 +144,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
144
144
|
version: '0'
|
145
145
|
requirements: []
|
146
146
|
rubyforge_project:
|
147
|
-
rubygems_version: 2.
|
147
|
+
rubygems_version: 2.4.5
|
148
148
|
signing_key:
|
149
149
|
specification_version: 4
|
150
150
|
summary: Uploads Ruby test coverage data to Code Climate.
|