hyperclient 0.9.1 → 0.9.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: 494b4be638b3b6d76edd4d07e5b12e36433dfd84c9a756dec34a278fd9ea2faa
4
- data.tar.gz: 1d9e97e2a76cdf4a991a5803bd14eadf40ae300e4065cbacdedee64b66f19a3c
3
+ metadata.gz: 30a6a424eb3f9cd9a70b19d49f3f9d3f3b952921fb6a2b034116296c7eb1e31f
4
+ data.tar.gz: b35c0cd0abaa39753b53f59c0f718152acf3a8915b498d0acef4e7b8f2f0d82c
5
5
  SHA512:
6
- metadata.gz: bd401bb429c28fb75af0c95908deaa43f91a67923c47ba17ba369eb238252add1657ea1aa2b57f9721c59113c06d394274268ade288618314b93c7d4e0c11b31
7
- data.tar.gz: 5892d3cabd8bad2e6bd5c6e9a5c6ef7f3fa9f7376c6aa39e9225acf8c37160da3550b66ff420440a9565d29ea898784bd3093bd36b09cbf1302f45aaa7d0a5a6
6
+ metadata.gz: 93c51dca3fa731081e1e82540d0c0f2d22f17e65ae336021b4b7199eac4ff1eecd3bd37e840cc02831e2d62b98d20a4a1e696dd5fba8bdd5ff51516f6bc763b6
7
+ data.tar.gz: 9a2ad7090c37531384d42105754bc4d492ba711048d758b042863e43a43612317007d8446c02ad0efc88e09f95f6f5cdbb48239319724e1c2f35862f2ad92dcc
@@ -1,6 +1,6 @@
1
1
  # This configuration was generated by
2
2
  # `rubocop --auto-gen-config`
3
- # on 2019-08-25 11:12:51 -0400 using RuboCop version 0.74.0.
3
+ # on 2020-05-10 19:37:12 -0400 using RuboCop version 0.81.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
@@ -11,7 +11,7 @@
11
11
  Metrics/ClassLength:
12
12
  Max: 103
13
13
 
14
- # Offense count: 3
14
+ # Offense count: 4
15
15
  # Configuration parameters: CountComments, ExcludedMethods.
16
16
  Metrics/MethodLength:
17
17
  Max: 25
@@ -46,14 +46,22 @@ Style/DoubleNegation:
46
46
  - 'lib/hyperclient/curie.rb'
47
47
  - 'lib/hyperclient/link.rb'
48
48
 
49
+ # Offense count: 3
50
+ # Cop supports --auto-correct.
51
+ Style/IfUnlessModifier:
52
+ Exclude:
53
+ - 'lib/hyperclient/link_collection.rb'
54
+ - 'lib/hyperclient/resource.rb'
55
+ - 'lib/hyperclient/resource_collection.rb'
56
+
49
57
  # Offense count: 1
50
58
  Style/MethodMissingSuper:
51
59
  Exclude:
52
60
  - 'lib/hyperclient/collection.rb'
53
61
 
54
- # Offense count: 93
62
+ # Offense count: 91
55
63
  # Cop supports --auto-correct.
56
64
  # Configuration parameters: AutoCorrect, AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns.
57
65
  # URISchemes: http, https
58
- Metrics/LineLength:
66
+ Layout/LineLength:
59
67
  Max: 142
@@ -4,7 +4,7 @@ sudo: false
4
4
 
5
5
  matrix:
6
6
  include:
7
- - rvm: 2.6.3
7
+ - rvm: 2.6.6
8
8
  - rvm: 2.5.5
9
9
  - rvm: 2.4.6
10
10
  - rvm: 2.4.6
@@ -1,5 +1,14 @@
1
1
  ## Changelog
2
2
 
3
+ ### 0.9.3 (2020/05/14)
4
+
5
+ * [#149](https://github.com/codegram/hyperclient/pull/149): Address Faraday warnings - [@yuki24](https://github.com/yuki24).
6
+ * [#160](https://github.com/codegram/hyperclient/pull/160): Require newer 'faraday-digestauth' - [@dblock](https://github.com/dblock).
7
+
8
+ ### 0.9.2 (2020/05/12)
9
+
10
+ * NOTE: **⚠ This version has been yanked ⚠** - [@dblock](https://github.com/dblock).
11
+
3
12
  ### 0.9.1 (2019/08/25)
4
13
 
5
14
  * NOTE: **⚠ This version is no longer tested with Ruby < 2.3 ⚠** - [@ivoanjo](https://github.com/ivoanjo).
data/Gemfile CHANGED
@@ -16,7 +16,7 @@ end
16
16
 
17
17
  group :development, :test do
18
18
  gem 'rake'
19
- gem 'rubocop', '~> 0.74.0', require: false
19
+ gem 'rubocop', '0.81.0', require: false
20
20
  gem 'simplecov', require: false
21
21
  end
22
22
 
data/README.md CHANGED
@@ -2,7 +2,6 @@
2
2
 
3
3
  [![Gem Version](http://img.shields.io/gem/v/hyperclient.svg)](http://badge.fury.io/rb/hyperclient)
4
4
  [![Build Status](http://img.shields.io/travis/codegram/hyperclient.svg)](https://travis-ci.org/codegram/hyperclient)
5
- [![Dependency Status](https://gemnasium.com/codegram/hyperclient.svg)](https://gemnasium.com/codegram/hyperclient)
6
5
  [![Code Climate](https://codeclimate.com/github/codegram/hyperclient.svg)](https://codeclimate.com/github/codegram/hyperclient)
7
6
  [![Coverage Status](https://img.shields.io/coveralls/codegram/hyperclient.svg)](https://coveralls.io/r/codegram/hyperclient?branch=master)
8
7
 
@@ -15,7 +15,7 @@ Gem::Specification.new do |gem|
15
15
 
16
16
  gem.add_dependency 'addressable'
17
17
  gem.add_dependency 'faraday', '>= 0.9.0'
18
- gem.add_dependency 'faraday-digestauth'
18
+ gem.add_dependency 'faraday-digestauth', '>= 0.3.0'
19
19
  gem.add_dependency 'faraday_hal_middleware'
20
20
  gem.add_dependency 'faraday_middleware'
21
21
  gem.add_dependency 'net-http-digest_auth'
@@ -62,8 +62,7 @@ module Hyperclient
62
62
  block
63
63
  else
64
64
  lambda do |conn|
65
- default_faraday_block.call conn
66
- yield conn
65
+ default_faraday_block.call(conn, &block)
67
66
  end
68
67
  end
69
68
  else
@@ -138,11 +137,14 @@ module Hyperclient
138
137
  #
139
138
  # Returns a block.
140
139
  def default_faraday_block
141
- lambda do |connection|
140
+ lambda do |connection, &block|
142
141
  connection.use Faraday::Response::RaiseError
143
142
  connection.use FaradayMiddleware::FollowRedirects
144
143
  connection.request :hal_json
145
144
  connection.response :hal_json, content_type: /\bjson$/
145
+
146
+ block&.call(connection)
147
+
146
148
  connection.adapter :net_http
147
149
  connection.options.params_encoder = Faraday::FlatParamsEncoder
148
150
  end
@@ -15,7 +15,9 @@ module Hyperclient
15
15
  # curies - The Hash with link curies.
16
16
  # entry_point - The EntryPoint object to inject the configuration.
17
17
  def initialize(collection, curies, entry_point)
18
- raise "Invalid response for LinkCollection. The response was: #{collection.inspect}" if collection && !collection.respond_to?(:collect)
18
+ if collection && !collection.respond_to?(:collect)
19
+ raise "Invalid response for LinkCollection. The response was: #{collection.inspect}"
20
+ end
19
21
 
20
22
  @_curies = (curies || {}).reduce({}) do |hash, curie_hash|
21
23
  curie = build_curie(curie_hash, entry_point)
@@ -111,7 +111,9 @@ module Hyperclient
111
111
  elsif !Array.method_defined?(method)
112
112
  %i[_attributes _embedded _links].each do |target|
113
113
  target = send(target)
114
- return target.send(method, *args, &block) if target.respond_to?(method.to_s)
114
+ if target.respond_to?(method.to_s)
115
+ return target.send(method, *args, &block)
116
+ end
115
117
  end
116
118
  super
117
119
  end
@@ -23,7 +23,9 @@ module Hyperclient
23
23
  private
24
24
 
25
25
  def build_resource(representation)
26
- return representation.map(&method(:build_resource)) if representation.is_a?(Array)
26
+ if representation.is_a?(Array)
27
+ return representation.map(&method(:build_resource))
28
+ end
27
29
 
28
30
  Resource.new(representation, @entry_point)
29
31
  end
@@ -1,3 +1,3 @@
1
1
  module Hyperclient
2
- VERSION = '0.9.1'.freeze
2
+ VERSION = '0.9.3'.freeze
3
3
  end
@@ -26,7 +26,14 @@ module Hyperclient
26
26
 
27
27
  it 'can insert additional middleware after a connection has been constructed' do
28
28
  entry_point.connection.must_be_kind_of Faraday::Connection
29
- entry_point.connection.use :instrumentation
29
+
30
+ warning = 'WARNING: Unexpected middleware set after the adapter. ' \
31
+ "This won't be supported from Faraday 1.0.\n"
32
+
33
+ assert_output nil, warning do
34
+ entry_point.connection.use :instrumentation
35
+ end
36
+
30
37
  handlers = entry_point.connection.builder.handlers
31
38
  handlers.must_include FaradayMiddleware::Instrumentation
32
39
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hyperclient
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.1
4
+ version: 0.9.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Oriol Gual
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-08-25 00:00:00.000000000 Z
11
+ date: 2020-05-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable
@@ -44,14 +44,14 @@ dependencies:
44
44
  requirements:
45
45
  - - ">="
46
46
  - !ruby/object:Gem::Version
47
- version: '0'
47
+ version: 0.3.0
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - ">="
53
53
  - !ruby/object:Gem::Version
54
- version: '0'
54
+ version: 0.3.0
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: faraday_hal_middleware
57
57
  requirement: !ruby/object:Gem::Requirement
@@ -168,7 +168,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
168
168
  - !ruby/object:Gem::Version
169
169
  version: '0'
170
170
  requirements: []
171
- rubygems_version: 3.0.3
171
+ rubygems_version: 3.1.3
172
172
  signing_key:
173
173
  specification_version: 4
174
174
  summary: ''