coveralls_reborn 0.17.0 → 0.18.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
  SHA256:
3
- metadata.gz: 33e597f0d8aa56b69519be43917d05b4ba6f2d2401d4f493c6a8dc00e90deba3
4
- data.tar.gz: 41f4c4f82f4a0dbd6140fd2585cd280710f78d39fa3fa62300832df8ed1a0c48
3
+ metadata.gz: ba2dd61c065e66138bf0724e4906fd08f6cef72d1294981eef24dc72c0d60539
4
+ data.tar.gz: 63e261e59a5c5682e8e17a8cdab055af5a722f01a07f76854392d2c4388150a7
5
5
  SHA512:
6
- metadata.gz: 8c15cd369a3e020c4a1dc928cf2fd68ce154f1d5837cd0952305ec559aeeacabceeed516f5168bcbc4a55fe286af0afbfadcbfa78391854dcd00dc46e063bd05
7
- data.tar.gz: fff07f460d21d7a768c86855ffb12c46f03da073605dbc3c6563b9c8c5c40d1624f124737ba0ee26ba0fd5c0a45da325879bf40bc097e2b5d5cea0cc3b55dfd5
6
+ metadata.gz: f843ef17092cf05bbb7acdfd77c2a5bccfbf817bb22f18488ce4d008a509208bd6585787344f7b690225b79635af226131c176d6df09b1b8ef809aa8bc017ed3
7
+ data.tar.gz: df01371281e6ef83a276eafb9849d00d15b7d5d2931865cdf93cbd6256d717772665960198c47228a4eb48c8b2323288584a3d20d8b4877e93706592ee96057e
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.18.0 / 2020-09-07
4
+
5
+ * [ENHANCEMENT] Refactor HTTP client [#10](https://github.com/tagliala/coveralls-ruby-reborn/pull/10)
6
+ * [ENHANCEMENT] Update dependencies
7
+
3
8
  ## 0.17.0 / 2020-08-26
4
9
 
5
10
  * [FEATURE] Add SimpleCov 0.19.0 compatibility
data/Gemfile CHANGED
@@ -12,8 +12,8 @@ end
12
12
  group :development do
13
13
  gem 'rake', '~> 13.0'
14
14
  gem 'rspec', '~> 3.9'
15
- gem 'rubocop', '~> 0.89.1'
16
- gem 'rubocop-performance', '~> 1.7'
15
+ gem 'rubocop', '~> 0.90.0'
16
+ gem 'rubocop-performance', '~> 1.8'
17
17
  gem 'rubocop-rspec', '~> 1.43'
18
18
  gem 'truthy', '~> 1.0'
19
19
  gem 'vcr', '~> 6.0'
data/README.md CHANGED
@@ -7,5 +7,5 @@ An up-to-date fork of [lemurheavy/coveralls-ruby](https://github.com/lemurheavy/
7
7
  Add to your `Gemfile`:
8
8
 
9
9
  ```rb
10
- gem 'coveralls_reborn', '~> 0.16.0', require: false
10
+ gem 'coveralls_reborn', '~> 0.18.0', require: false
11
11
  ```
@@ -80,15 +80,7 @@ module Coveralls
80
80
 
81
81
  def build_client(uri)
82
82
  client = Net::HTTP.new(uri.host, uri.port)
83
- client.use_ssl = true if uri.port == 443
84
- client.verify_mode = OpenSSL::SSL::VERIFY_NONE
85
-
86
- unless client.respond_to?(:ssl_version=)
87
- Net::HTTP.ssl_context_accessor('ssl_version')
88
- end
89
-
90
- client.ssl_version = 'TLSv1'
91
-
83
+ client.use_ssl = uri.port == 443
92
84
  client
93
85
  end
94
86
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Coveralls
4
- VERSION = '0.17.0'
4
+ VERSION = '0.18.0'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: coveralls_reborn
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.17.0
4
+ version: 0.18.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nick Merwin
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2020-08-26 00:00:00.000000000 Z
13
+ date: 2020-09-07 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: simplecov