my_api_client 0.10.2 → 0.10.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6b51c7b894daf22bf34e5ee6e578a454a0937baaa65b81b57beef81bbc6987c8
4
- data.tar.gz: 112cba8ee0ef065e785085add92835cb11a4d09b25337f0af0fc6714c72b138d
3
+ metadata.gz: fc8721bbc228972f91e1f89b3bcc6a64f677d8568e0b892c938cc75bd18a2dc2
4
+ data.tar.gz: 1b09474e9bfb2525435b20ad7241089f2c235c98dbb812498a0eecf6471d3345
5
5
  SHA512:
6
- metadata.gz: f1d8bbf5fbaf7fddb6b862f1f3b16f0747b3f6d67d1c1ab14d3587bffda42357718d029fa96761b8ef3fa69dd6c2e7088fc3e283ad152028d16f66e95411268b
7
- data.tar.gz: 75f812f2f1d6bc99b9a2c482942c395b4b5ca96d972799013818f08ad1337533b3bcdadb9734a21ca1f323ae420b8b245b81f2261a45534f8dbe7d49473403e0
6
+ metadata.gz: 87da5de5e39be01d08be5e2e4cf5dcf02340da658b0c6fce3b5fde9ae7ad175c61bf912bbed0155bce242f51c1c7306306415f38f860ae97ece7737d52c19d0e
7
+ data.tar.gz: f2edcb592799dc26e4fbc5ebfc55abc1eb2edc3e120e5c6c297b5397c4f2c381668664070edcaf14780040f07d77e9a37cbc027254c0a87af4c6fb734015123a
data/.circleci/config.yml CHANGED
@@ -5,7 +5,7 @@
5
5
  version: 2.1
6
6
 
7
7
  orbs:
8
- ruby-orbs: sue445/ruby-orbs@1.4.3
8
+ ruby-orbs: sue445/ruby-orbs@1.4.5
9
9
  code-climate: rvla/code-climate@0.0.2
10
10
 
11
11
  references:
@@ -290,7 +290,7 @@ workflows:
290
290
  filters:
291
291
  branches:
292
292
  only:
293
- - production
293
+ - release
294
294
 
295
295
  challenge:
296
296
  triggers:
@@ -308,4 +308,4 @@ experimental:
308
308
  branches:
309
309
  only:
310
310
  - master
311
- - production
311
+ - release
data/.gem_comet.yml CHANGED
@@ -7,6 +7,6 @@ version: 1.1
7
7
 
8
8
  release:
9
9
  base_branch: master
10
- release_branch: production
10
+ release_branch: release
11
11
  version_file_path: lib/my_api_client/version.rb
12
12
  changelog_file_path: CHANGELOG.md # optional
data/.rubocop_todo.yml CHANGED
@@ -1,6 +1,6 @@
1
1
  # This configuration was generated by
2
2
  # `rubocop --auto-gen-config`
3
- # on 2019-10-14 23:40:54 +0000 using RuboCop version 0.75.1.
3
+ # on 2019-11-27 23:40:54 +0000 using RuboCop version 0.77.0.
4
4
  # The point is for the user to remove these configuration records
5
5
  # one by one as the offenses are removed from the code base.
6
6
  # Note that changes in the inspected code, or installation of new
data/CHANGELOG.md CHANGED
@@ -1,17 +1,40 @@
1
1
  # Change log
2
2
 
3
+ ## v0.10.3 (Dec 05, 2019)
4
+
5
+ ### Bugfix
6
+
7
+ * [#150](https://github.com/ryz310/my_api_client/pull/150) Redefine network error class ([@ryz310](https://github.com/ryz310))
8
+
9
+ ### Rubocop Challenge
10
+
11
+ * [#136](https://github.com/ryz310/my_api_client/pull/136) Re-generate .rubocop_todo.yml with RuboCop v0.76.0 ([@ryz310](https://github.com/ryz310))
12
+ * [#148](https://github.com/ryz310/my_api_client/pull/148) Re-generate .rubocop_todo.yml with RuboCop v0.77.0 ([@ryz310](https://github.com/ryz310))
13
+
14
+ ### Dependabot
15
+
16
+ * [#139](https://github.com/ryz310/my_api_client/pull/139) Bump rake from 13.0.0 to 13.0.1 ([@ryz310](https://github.com/ryz310))
17
+ * [#140](https://github.com/ryz310/my_api_client/pull/140) Bump rubocop-performance from 1.5.0 to 1.5.1 ([@ryz310](https://github.com/ryz310))
18
+ * [#146](https://github.com/ryz310/my_api_client/pull/146) Bump rubocop-rspec from 1.36.0 to 1.37.0 ([@ryz310](https://github.com/ryz310))
19
+
20
+ ### Renovate
21
+
22
+ * [#137](https://github.com/ryz310/my_api_client/pull/137) Configure Renovate ([@ryz310](https://github.com/ryz310))
23
+ * [#138](https://github.com/ryz310/my_api_client/pull/138) Update ruby-orbs orb to v1.4.4 ([@ryz310](https://github.com/ryz310))
24
+ * [#141](https://github.com/ryz310/my_api_client/pull/141) Update ruby-orbs orb to v1.4.5 ([@ryz310](https://github.com/ryz310))
25
+
3
26
  ## 0.10.2 (Oct 23, 2019)
4
27
 
5
28
  ### Bugfix
6
29
 
7
- * Ignore error handling when using request to matcher ([#130](git@github.com:ryz310/my_api_client/pull/130))
8
- * Fix `be_handled_as_an_error` description ([#131](git@github.com:ryz310/my_api_client/pull/131))
30
+ * Ignore error handling when using request to matcher ([#130](https://github.com/ryz310/my_api_client/pull/130))
31
+ * Fix `be_handled_as_an_error` description ([#131](https://github.com/ryz310/my_api_client/pull/131))
9
32
 
10
33
  ## 0.10.1 (Oct 23, 2019)
11
34
 
12
35
  ### Feature
13
36
 
14
- * Support `retry_on` testing at shoulda matcher ([#127](git@github.com:ryz310/my_api_client/pull/127))
37
+ * Support `retry_on` testing at shoulda matcher ([#127](https://github.com/ryz310/my_api_client/pull/127))
15
38
 
16
39
  ## 0.10.0 (Oct 23, 2019)
17
40
 
data/Gemfile.lock CHANGED
@@ -1,15 +1,16 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- my_api_client (0.10.2)
4
+ my_api_client (0.10.3)
5
5
  activesupport (>= 4.2.0)
6
+ faraday (>= 0.17.1)
6
7
  jsonpath
7
8
  sawyer (>= 0.8.2)
8
9
 
9
10
  GEM
10
11
  remote: https://rubygems.org/
11
12
  specs:
12
- activesupport (5.2.3)
13
+ activesupport (5.2.4)
13
14
  concurrent-ruby (~> 1.0, >= 1.0.2)
14
15
  i18n (>= 0.7, < 2)
15
16
  minitest (~> 5.1)
@@ -17,7 +18,7 @@ GEM
17
18
  addressable (2.7.0)
18
19
  public_suffix (>= 2.0.2, < 5.0)
19
20
  ast (2.4.0)
20
- bugsnag (6.12.1)
21
+ bugsnag (6.12.2)
21
22
  concurrent-ruby (~> 1.0)
22
23
  byebug (11.0.1)
23
24
  coderay (1.1.2)
@@ -26,21 +27,21 @@ GEM
26
27
  safe_yaml (~> 1.0.0)
27
28
  diff-lcs (1.3)
28
29
  docile (1.3.2)
29
- faraday (0.17.0)
30
+ faraday (0.17.1)
30
31
  multipart-post (>= 1.2, < 3)
31
32
  hashdiff (1.0.0)
32
33
  i18n (1.7.0)
33
34
  concurrent-ruby (~> 1.0)
34
- jaro_winkler (1.5.3)
35
+ jaro_winkler (1.5.4)
35
36
  json (2.2.0)
36
37
  jsonpath (1.0.5)
37
38
  multi_json
38
39
  to_regexp (~> 0.2.1)
39
40
  method_source (0.9.2)
40
- minitest (5.12.2)
41
+ minitest (5.13.0)
41
42
  multi_json (1.14.1)
42
43
  multipart-post (2.1.1)
43
- parallel (1.18.0)
44
+ parallel (1.19.1)
44
45
  parser (2.6.5.0)
45
46
  ast (~> 2.4.0)
46
47
  pry (0.12.2)
@@ -51,7 +52,7 @@ GEM
51
52
  pry (~> 0.10)
52
53
  public_suffix (4.0.1)
53
54
  rainbow (3.0.0)
54
- rake (13.0.0)
55
+ rake (13.0.1)
55
56
  rspec (3.9.0)
56
57
  rspec-core (~> 3.9.0)
57
58
  rspec-expectations (~> 3.9.0)
@@ -67,16 +68,16 @@ GEM
67
68
  rspec-support (3.9.0)
68
69
  rspec_junit_formatter (0.4.1)
69
70
  rspec-core (>= 2, < 4, != 2.12.0)
70
- rubocop (0.75.1)
71
+ rubocop (0.77.0)
71
72
  jaro_winkler (~> 1.5.1)
72
73
  parallel (~> 1.10)
73
74
  parser (>= 2.6)
74
75
  rainbow (>= 2.2.2, < 4.0)
75
76
  ruby-progressbar (~> 1.7)
76
77
  unicode-display_width (>= 1.4.0, < 1.7)
77
- rubocop-performance (1.5.0)
78
+ rubocop-performance (1.5.1)
78
79
  rubocop (>= 0.71.0)
79
- rubocop-rspec (1.36.0)
80
+ rubocop-rspec (1.37.0)
80
81
  rubocop (>= 0.68.1)
81
82
  ruby-progressbar (1.10.1)
82
83
  safe_yaml (1.0.5)
@@ -27,7 +27,9 @@ module MyApiClient
27
27
  end
28
28
 
29
29
  NETWORK_ERRORS = [
30
- Faraday::ClientError,
30
+ Faraday::TimeoutError,
31
+ Faraday::ConnectionFailed,
32
+ Faraday::SSLError,
31
33
  OpenSSL::SSL::SSLError,
32
34
  Net::OpenTimeout,
33
35
  Net::ReadTimeout,
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module MyApiClient
4
- VERSION = '0.10.2'
4
+ VERSION = '0.10.3'
5
5
  end
@@ -23,6 +23,7 @@ Gem::Specification.new do |spec|
23
23
  spec.require_paths = ['lib']
24
24
 
25
25
  spec.add_dependency 'activesupport', '>= 4.2.0'
26
+ spec.add_dependency 'faraday', '>= 0.17.1'
26
27
  spec.add_dependency 'jsonpath'
27
28
  spec.add_dependency 'sawyer', '>= 0.8.2'
28
29
 
data/renovate.json ADDED
@@ -0,0 +1,5 @@
1
+ {
2
+ "extends": [
3
+ "config:base"
4
+ ]
5
+ }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: my_api_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.2
4
+ version: 0.10.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - ryz310
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-10-23 00:00:00.000000000 Z
11
+ date: 2019-12-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -24,6 +24,20 @@ dependencies:
24
24
  - - ">="
25
25
  - !ruby/object:Gem::Version
26
26
  version: 4.2.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: faraday
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: 0.17.1
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: 0.17.1
27
41
  - !ruby/object:Gem::Dependency
28
42
  name: jsonpath
29
43
  requirement: !ruby/object:Gem::Requirement
@@ -262,6 +276,7 @@ files:
262
276
  - lib/my_api_client/rspec/stub.rb
263
277
  - lib/my_api_client/version.rb
264
278
  - my_api_client.gemspec
279
+ - renovate.json
265
280
  homepage: https://github.com/ryz310/my_api_client
266
281
  licenses:
267
282
  - MIT