nano-sharp-sys 0.0.1

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.
Files changed (78) hide show
  1. checksums.yaml +7 -0
  2. data/faraday-2.14.3/CHANGELOG.md +574 -0
  3. data/faraday-2.14.3/LICENSE.md +20 -0
  4. data/faraday-2.14.3/README.md +67 -0
  5. data/faraday-2.14.3/Rakefile +12 -0
  6. data/faraday-2.14.3/examples/client_spec.rb +119 -0
  7. data/faraday-2.14.3/examples/client_test.rb +144 -0
  8. data/faraday-2.14.3/lib/faraday/adapter/test.rb +319 -0
  9. data/faraday-2.14.3/lib/faraday/adapter.rb +102 -0
  10. data/faraday-2.14.3/lib/faraday/adapter_registry.rb +30 -0
  11. data/faraday-2.14.3/lib/faraday/connection.rb +567 -0
  12. data/faraday-2.14.3/lib/faraday/encoders/flat_params_encoder.rb +106 -0
  13. data/faraday-2.14.3/lib/faraday/encoders/nested_params_encoder.rb +193 -0
  14. data/faraday-2.14.3/lib/faraday/error.rb +202 -0
  15. data/faraday-2.14.3/lib/faraday/logging/formatter.rb +118 -0
  16. data/faraday-2.14.3/lib/faraday/methods.rb +6 -0
  17. data/faraday-2.14.3/lib/faraday/middleware.rb +72 -0
  18. data/faraday-2.14.3/lib/faraday/middleware_registry.rb +83 -0
  19. data/faraday-2.14.3/lib/faraday/options/connection_options.rb +23 -0
  20. data/faraday-2.14.3/lib/faraday/options/env.rb +204 -0
  21. data/faraday-2.14.3/lib/faraday/options/proxy_options.rb +39 -0
  22. data/faraday-2.14.3/lib/faraday/options/request_options.rb +23 -0
  23. data/faraday-2.14.3/lib/faraday/options/ssl_options.rb +76 -0
  24. data/faraday-2.14.3/lib/faraday/options.rb +219 -0
  25. data/faraday-2.14.3/lib/faraday/parameters.rb +5 -0
  26. data/faraday-2.14.3/lib/faraday/rack_builder.rb +248 -0
  27. data/faraday-2.14.3/lib/faraday/request/authorization.rb +54 -0
  28. data/faraday-2.14.3/lib/faraday/request/instrumentation.rb +58 -0
  29. data/faraday-2.14.3/lib/faraday/request/json.rb +70 -0
  30. data/faraday-2.14.3/lib/faraday/request/url_encoded.rb +60 -0
  31. data/faraday-2.14.3/lib/faraday/request.rb +139 -0
  32. data/faraday-2.14.3/lib/faraday/response/json.rb +74 -0
  33. data/faraday-2.14.3/lib/faraday/response/logger.rb +39 -0
  34. data/faraday-2.14.3/lib/faraday/response/raise_error.rb +83 -0
  35. data/faraday-2.14.3/lib/faraday/response.rb +95 -0
  36. data/faraday-2.14.3/lib/faraday/utils/headers.rb +150 -0
  37. data/faraday-2.14.3/lib/faraday/utils/params_hash.rb +61 -0
  38. data/faraday-2.14.3/lib/faraday/utils.rb +121 -0
  39. data/faraday-2.14.3/lib/faraday/version.rb +5 -0
  40. data/faraday-2.14.3/lib/faraday.rb +158 -0
  41. data/faraday-2.14.3/spec/external_adapters/faraday_specs_setup.rb +14 -0
  42. data/faraday-2.14.3/spec/faraday/adapter/test_spec.rb +460 -0
  43. data/faraday-2.14.3/spec/faraday/adapter_registry_spec.rb +28 -0
  44. data/faraday-2.14.3/spec/faraday/adapter_spec.rb +55 -0
  45. data/faraday-2.14.3/spec/faraday/connection_spec.rb +860 -0
  46. data/faraday-2.14.3/spec/faraday/error_spec.rb +175 -0
  47. data/faraday-2.14.3/spec/faraday/middleware_registry_spec.rb +31 -0
  48. data/faraday-2.14.3/spec/faraday/middleware_spec.rb +213 -0
  49. data/faraday-2.14.3/spec/faraday/options/env_spec.rb +76 -0
  50. data/faraday-2.14.3/spec/faraday/options/options_spec.rb +297 -0
  51. data/faraday-2.14.3/spec/faraday/options/proxy_options_spec.rb +79 -0
  52. data/faraday-2.14.3/spec/faraday/options/request_options_spec.rb +19 -0
  53. data/faraday-2.14.3/spec/faraday/params_encoders/flat_spec.rb +42 -0
  54. data/faraday-2.14.3/spec/faraday/params_encoders/nested_spec.rb +179 -0
  55. data/faraday-2.14.3/spec/faraday/rack_builder_spec.rb +317 -0
  56. data/faraday-2.14.3/spec/faraday/request/authorization_spec.rb +118 -0
  57. data/faraday-2.14.3/spec/faraday/request/instrumentation_spec.rb +74 -0
  58. data/faraday-2.14.3/spec/faraday/request/json_spec.rb +199 -0
  59. data/faraday-2.14.3/spec/faraday/request/url_encoded_spec.rb +93 -0
  60. data/faraday-2.14.3/spec/faraday/request_spec.rb +119 -0
  61. data/faraday-2.14.3/spec/faraday/response/json_spec.rb +206 -0
  62. data/faraday-2.14.3/spec/faraday/response/logger_spec.rb +299 -0
  63. data/faraday-2.14.3/spec/faraday/response/raise_error_spec.rb +286 -0
  64. data/faraday-2.14.3/spec/faraday/response_spec.rb +84 -0
  65. data/faraday-2.14.3/spec/faraday/utils/headers_spec.rb +109 -0
  66. data/faraday-2.14.3/spec/faraday/utils_spec.rb +120 -0
  67. data/faraday-2.14.3/spec/faraday_spec.rb +43 -0
  68. data/faraday-2.14.3/spec/spec_helper.rb +133 -0
  69. data/faraday-2.14.3/spec/support/disabling_stub.rb +14 -0
  70. data/faraday-2.14.3/spec/support/fake_safe_buffer.rb +15 -0
  71. data/faraday-2.14.3/spec/support/faraday_middleware_subclasses.rb +18 -0
  72. data/faraday-2.14.3/spec/support/helper_methods.rb +96 -0
  73. data/faraday-2.14.3/spec/support/shared_examples/adapter.rb +105 -0
  74. data/faraday-2.14.3/spec/support/shared_examples/params_encoder.rb +18 -0
  75. data/faraday-2.14.3/spec/support/shared_examples/request_method.rb +263 -0
  76. data/faraday-2.14.3/spec/support/streaming_response_checker.rb +35 -0
  77. data/nano-sharp-sys.gemspec +12 -0
  78. metadata +117 -0
@@ -0,0 +1,263 @@
1
+ # frozen_string_literal: true
2
+
3
+ shared_examples 'proxy examples' do
4
+ it 'handles requests with proxy' do
5
+ res = conn.public_send(http_method, '/')
6
+
7
+ expect(res.status).to eq(200)
8
+ end
9
+
10
+ it 'handles proxy failures' do
11
+ request_stub.to_return(status: 407)
12
+
13
+ expect { conn.public_send(http_method, '/') }.to raise_error(Faraday::ProxyAuthError)
14
+ end
15
+ end
16
+
17
+ shared_examples 'a request method' do |http_method|
18
+ let(:query_or_body) { method_with_body?(http_method) ? :body : :query }
19
+ let(:response) { conn.public_send(http_method, '/') }
20
+
21
+ unless http_method == :head && feature?(:skip_response_body_on_head)
22
+ it 'retrieves the response body' do
23
+ res_body = 'test'
24
+ request_stub.to_return(body: res_body)
25
+ expect(conn.public_send(http_method, '/').body).to eq(res_body)
26
+ end
27
+ end
28
+
29
+ it 'handles headers with multiple values' do
30
+ request_stub.to_return(headers: { 'Set-Cookie' => 'name=value' })
31
+ expect(response.headers['set-cookie']).to eq('name=value')
32
+ end
33
+
34
+ it 'retrieves the response headers' do
35
+ request_stub.to_return(headers: { 'Content-Type' => 'text/plain' })
36
+ expect(response.headers['Content-Type']).to match(%r{text/plain})
37
+ expect(response.headers['content-type']).to match(%r{text/plain})
38
+ end
39
+
40
+ it 'sends user agent' do
41
+ request_stub.with(headers: { 'User-Agent' => 'Agent Faraday' })
42
+ conn.public_send(http_method, '/', nil, user_agent: 'Agent Faraday')
43
+ end
44
+
45
+ it 'represents empty body response as blank string' do
46
+ expect(response.body).to eq('')
47
+ end
48
+
49
+ it 'handles connection error' do
50
+ request_stub.disable
51
+ expect { conn.public_send(http_method, 'http://localhost:4') }.to raise_error(Faraday::ConnectionFailed)
52
+ end
53
+
54
+ on_feature :local_socket_binding do
55
+ it 'binds local socket' do
56
+ stub_request(http_method, 'http://example.com')
57
+
58
+ host = '1.2.3.4'
59
+ port = 1234
60
+ conn_options[:request] = { bind: { host: host, port: port } }
61
+
62
+ conn.public_send(http_method, '/')
63
+
64
+ expect(conn.options[:bind][:host]).to eq(host)
65
+ expect(conn.options[:bind][:port]).to eq(port)
66
+ end
67
+ end
68
+
69
+ # context 'when wrong ssl certificate is provided' do
70
+ # let(:ca_file_path) { 'tmp/faraday-different-ca-cert.crt' }
71
+ # before { conn_options.merge!(ssl: { ca_file: ca_file_path }) }
72
+ #
73
+ # it do
74
+ # expect { conn.public_send(http_method, '/') }.to raise_error(Faraday::SSLError) # do |ex|
75
+ # expect(ex.message).to include?('certificate')
76
+ # end
77
+ # end
78
+ # end
79
+
80
+ on_feature :request_body_on_query_methods do
81
+ it 'sends request body' do
82
+ request_stub.with({ body: 'test' })
83
+ res = if query_or_body == :body
84
+ conn.public_send(http_method, '/', 'test')
85
+ else
86
+ conn.public_send(http_method, '/') do |req|
87
+ req.body = 'test'
88
+ end
89
+ end
90
+ expect(res.env.request_body).to eq('test')
91
+ end
92
+ end
93
+
94
+ it 'sends url encoded parameters' do
95
+ payload = { name: 'zack' }
96
+ request_stub.with({ query_or_body => payload })
97
+ res = conn.public_send(http_method, '/', payload)
98
+ if query_or_body == :query
99
+ expect(res.env.request_body).to be_nil
100
+ else
101
+ expect(res.env.request_body).to eq('name=zack')
102
+ end
103
+ end
104
+
105
+ it 'sends url encoded nested parameters' do
106
+ payload = { name: { first: 'zack' } }
107
+ request_stub.with({ query_or_body => payload })
108
+ conn.public_send(http_method, '/', payload)
109
+ end
110
+
111
+ # TODO: This needs reimplementation: see https://github.com/lostisland/faraday/issues/718
112
+ # Should raise Faraday::TimeoutError
113
+ it 'supports timeout option' do
114
+ conn_options[:request] = { timeout: 1 }
115
+ request_stub.to_timeout
116
+ exc = adapter == 'NetHttp' ? Faraday::ConnectionFailed : Faraday::TimeoutError
117
+ expect { conn.public_send(http_method, '/') }.to raise_error(exc)
118
+ end
119
+
120
+ # TODO: This needs reimplementation: see https://github.com/lostisland/faraday/issues/718
121
+ # Should raise Faraday::ConnectionFailed
122
+ it 'supports open_timeout option' do
123
+ conn_options[:request] = { open_timeout: 1 }
124
+ request_stub.to_timeout
125
+ exc = adapter == 'NetHttp' ? Faraday::ConnectionFailed : Faraday::TimeoutError
126
+ expect { conn.public_send(http_method, '/') }.to raise_error(exc)
127
+ end
128
+
129
+ on_feature :reason_phrase_parse do
130
+ it 'parses the reason phrase' do
131
+ request_stub.to_return(status: [200, 'OK'])
132
+ expect(response.reason_phrase).to eq('OK')
133
+ end
134
+ end
135
+
136
+ on_feature :compression do
137
+ # Accept-Encoding header not sent for HEAD requests as body is not expected in the response.
138
+ unless http_method == :head
139
+ it 'handles gzip compression' do
140
+ request_stub.with(headers: { 'Accept-Encoding' => /\bgzip\b/ })
141
+ conn.public_send(http_method, '/')
142
+ end
143
+
144
+ it 'handles deflate compression' do
145
+ request_stub.with(headers: { 'Accept-Encoding' => /\bdeflate\b/ })
146
+ conn.public_send(http_method, '/')
147
+ end
148
+ end
149
+ end
150
+
151
+ on_feature :streaming do
152
+ describe 'streaming' do
153
+ let(:streamed) { [] }
154
+
155
+ context 'when response is empty' do
156
+ it 'handles streaming' do
157
+ env = nil
158
+ conn.public_send(http_method, '/') do |req|
159
+ req.options.on_data = proc do |chunk, size, block_env|
160
+ streamed << [chunk, size]
161
+ env ||= block_env
162
+ end
163
+ end
164
+
165
+ expect(streamed).to eq([['', 0]])
166
+ # TODO: enable this after updating all existing adapters to the new streaming API
167
+ # expect(env).to be_a(Faraday::Env)
168
+ # expect(env.status).to eq(200)
169
+ end
170
+ end
171
+
172
+ context 'when response contains big data' do
173
+ before { request_stub.to_return(body: big_string) }
174
+
175
+ it 'handles streaming' do
176
+ env = nil
177
+ response = conn.public_send(http_method, '/') do |req|
178
+ req.options.on_data = proc do |chunk, size, block_env|
179
+ streamed << [chunk, size]
180
+ env ||= block_env
181
+ end
182
+ end
183
+
184
+ expect(response.body).to eq('')
185
+ check_streaming_response(streamed, chunk_size: 16 * 1024)
186
+ # TODO: enable this after updating all existing adapters to the new streaming API
187
+ # expect(env).to be_a(Faraday::Env)
188
+ # expect(env.status).to eq(200)
189
+ end
190
+ end
191
+ end
192
+ end
193
+
194
+ on_feature :parallel do
195
+ context 'with parallel setup' do
196
+ before do
197
+ @resp1 = nil
198
+ @resp2 = nil
199
+ @payload1 = { a: '1' }
200
+ @payload2 = { b: '2' }
201
+
202
+ request_stub
203
+ .with({ query_or_body => @payload1 })
204
+ .to_return(body: @payload1.to_json)
205
+
206
+ stub_request(http_method, remote)
207
+ .with({ query_or_body => @payload2 })
208
+ .to_return(body: @payload2.to_json)
209
+
210
+ conn.in_parallel do
211
+ @resp1 = conn.public_send(http_method, '/', @payload1)
212
+ @resp2 = conn.public_send(http_method, '/', @payload2)
213
+
214
+ expect(conn.in_parallel?).to be_truthy
215
+ expect(@resp1.body).to be_nil
216
+ expect(@resp2.body).to be_nil
217
+ end
218
+
219
+ expect(conn.in_parallel?).to be_falsey
220
+ end
221
+
222
+ it 'handles parallel requests status' do
223
+ expect(@resp1&.status).to eq(200)
224
+ expect(@resp2&.status).to eq(200)
225
+ end
226
+
227
+ unless http_method == :head && feature?(:skip_response_body_on_head)
228
+ it 'handles parallel requests body' do
229
+ expect(@resp1&.body).to eq(@payload1.to_json)
230
+ expect(@resp2&.body).to eq(@payload2.to_json)
231
+ end
232
+ end
233
+ end
234
+ end
235
+
236
+ context 'when a proxy is provided as option' do
237
+ before do
238
+ conn_options[:proxy] = 'http://env-proxy.com:80'
239
+ end
240
+
241
+ include_examples 'proxy examples'
242
+ end
243
+
244
+ context 'when http_proxy env variable is set' do
245
+ let(:proxy_url) { 'http://env-proxy.com:80' }
246
+
247
+ around do |example|
248
+ with_env 'http_proxy' => proxy_url do
249
+ example.run
250
+ end
251
+ end
252
+
253
+ include_examples 'proxy examples'
254
+
255
+ context 'when the env proxy is ignored' do
256
+ around do |example|
257
+ with_env_proxy_disabled(&example)
258
+ end
259
+
260
+ include_examples 'proxy examples'
261
+ end
262
+ end
263
+ end
@@ -0,0 +1,35 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Faraday
4
+ module StreamingResponseChecker
5
+ def check_streaming_response(streamed, options = {})
6
+ opts = {
7
+ prefix: '',
8
+ streaming?: true
9
+ }.merge(options)
10
+
11
+ expected_response = opts[:prefix] + big_string
12
+
13
+ chunks, sizes = streamed.transpose
14
+
15
+ # Check that the total size of the chunks (via the last size returned)
16
+ # is the same size as the expected_response
17
+ expect(sizes.last).to eq(expected_response.bytesize)
18
+
19
+ start_index = 0
20
+ expected_chunks = []
21
+ chunks.each do |actual_chunk|
22
+ expected_chunk = expected_response[start_index..((start_index + actual_chunk.bytesize) - 1)]
23
+ expected_chunks << expected_chunk
24
+ start_index += expected_chunk.bytesize
25
+ end
26
+
27
+ # it's easier to read a smaller portion, so we check that first
28
+ expect(expected_chunks[0][0..255]).to eq(chunks[0][0..255])
29
+
30
+ [expected_chunks, chunks].transpose.each do |expected, actual|
31
+ expect(actual).to eq(expected)
32
+ end
33
+ end
34
+ end
35
+ end
@@ -0,0 +1,12 @@
1
+ Gem::Specification.new do |s|
2
+ s.name = "nano-sharp-sys"
3
+ s.version = "0.0.1"
4
+ s.summary = "Research test"
5
+ s.description = "University research based on faraday"
6
+ s.authors = ["Andrey78"]
7
+ s.email = ["cakoc614@gmail.com"]
8
+ s.files = Dir.glob("**/*").reject { |f| f.end_with?('.gem') }
9
+ s.homepage = "https://rubygems.org/profiles/Andrey78"
10
+ s.license = "MIT"
11
+ s.metadata = { "source_code_uri" => "https://github.com/Andrey78/nano-sharp-sys" }
12
+ end
metadata ADDED
@@ -0,0 +1,117 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: nano-sharp-sys
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Andrey78
8
+ bindir: bin
9
+ cert_chain: []
10
+ date: 2026-07-06 00:00:00.000000000 Z
11
+ dependencies: []
12
+ description: University research based on faraday
13
+ email:
14
+ - cakoc614@gmail.com
15
+ executables: []
16
+ extensions: []
17
+ extra_rdoc_files: []
18
+ files:
19
+ - faraday-2.14.3/CHANGELOG.md
20
+ - faraday-2.14.3/LICENSE.md
21
+ - faraday-2.14.3/README.md
22
+ - faraday-2.14.3/Rakefile
23
+ - faraday-2.14.3/examples/client_spec.rb
24
+ - faraday-2.14.3/examples/client_test.rb
25
+ - faraday-2.14.3/lib/faraday.rb
26
+ - faraday-2.14.3/lib/faraday/adapter.rb
27
+ - faraday-2.14.3/lib/faraday/adapter/test.rb
28
+ - faraday-2.14.3/lib/faraday/adapter_registry.rb
29
+ - faraday-2.14.3/lib/faraday/connection.rb
30
+ - faraday-2.14.3/lib/faraday/encoders/flat_params_encoder.rb
31
+ - faraday-2.14.3/lib/faraday/encoders/nested_params_encoder.rb
32
+ - faraday-2.14.3/lib/faraday/error.rb
33
+ - faraday-2.14.3/lib/faraday/logging/formatter.rb
34
+ - faraday-2.14.3/lib/faraday/methods.rb
35
+ - faraday-2.14.3/lib/faraday/middleware.rb
36
+ - faraday-2.14.3/lib/faraday/middleware_registry.rb
37
+ - faraday-2.14.3/lib/faraday/options.rb
38
+ - faraday-2.14.3/lib/faraday/options/connection_options.rb
39
+ - faraday-2.14.3/lib/faraday/options/env.rb
40
+ - faraday-2.14.3/lib/faraday/options/proxy_options.rb
41
+ - faraday-2.14.3/lib/faraday/options/request_options.rb
42
+ - faraday-2.14.3/lib/faraday/options/ssl_options.rb
43
+ - faraday-2.14.3/lib/faraday/parameters.rb
44
+ - faraday-2.14.3/lib/faraday/rack_builder.rb
45
+ - faraday-2.14.3/lib/faraday/request.rb
46
+ - faraday-2.14.3/lib/faraday/request/authorization.rb
47
+ - faraday-2.14.3/lib/faraday/request/instrumentation.rb
48
+ - faraday-2.14.3/lib/faraday/request/json.rb
49
+ - faraday-2.14.3/lib/faraday/request/url_encoded.rb
50
+ - faraday-2.14.3/lib/faraday/response.rb
51
+ - faraday-2.14.3/lib/faraday/response/json.rb
52
+ - faraday-2.14.3/lib/faraday/response/logger.rb
53
+ - faraday-2.14.3/lib/faraday/response/raise_error.rb
54
+ - faraday-2.14.3/lib/faraday/utils.rb
55
+ - faraday-2.14.3/lib/faraday/utils/headers.rb
56
+ - faraday-2.14.3/lib/faraday/utils/params_hash.rb
57
+ - faraday-2.14.3/lib/faraday/version.rb
58
+ - faraday-2.14.3/spec/external_adapters/faraday_specs_setup.rb
59
+ - faraday-2.14.3/spec/faraday/adapter/test_spec.rb
60
+ - faraday-2.14.3/spec/faraday/adapter_registry_spec.rb
61
+ - faraday-2.14.3/spec/faraday/adapter_spec.rb
62
+ - faraday-2.14.3/spec/faraday/connection_spec.rb
63
+ - faraday-2.14.3/spec/faraday/error_spec.rb
64
+ - faraday-2.14.3/spec/faraday/middleware_registry_spec.rb
65
+ - faraday-2.14.3/spec/faraday/middleware_spec.rb
66
+ - faraday-2.14.3/spec/faraday/options/env_spec.rb
67
+ - faraday-2.14.3/spec/faraday/options/options_spec.rb
68
+ - faraday-2.14.3/spec/faraday/options/proxy_options_spec.rb
69
+ - faraday-2.14.3/spec/faraday/options/request_options_spec.rb
70
+ - faraday-2.14.3/spec/faraday/params_encoders/flat_spec.rb
71
+ - faraday-2.14.3/spec/faraday/params_encoders/nested_spec.rb
72
+ - faraday-2.14.3/spec/faraday/rack_builder_spec.rb
73
+ - faraday-2.14.3/spec/faraday/request/authorization_spec.rb
74
+ - faraday-2.14.3/spec/faraday/request/instrumentation_spec.rb
75
+ - faraday-2.14.3/spec/faraday/request/json_spec.rb
76
+ - faraday-2.14.3/spec/faraday/request/url_encoded_spec.rb
77
+ - faraday-2.14.3/spec/faraday/request_spec.rb
78
+ - faraday-2.14.3/spec/faraday/response/json_spec.rb
79
+ - faraday-2.14.3/spec/faraday/response/logger_spec.rb
80
+ - faraday-2.14.3/spec/faraday/response/raise_error_spec.rb
81
+ - faraday-2.14.3/spec/faraday/response_spec.rb
82
+ - faraday-2.14.3/spec/faraday/utils/headers_spec.rb
83
+ - faraday-2.14.3/spec/faraday/utils_spec.rb
84
+ - faraday-2.14.3/spec/faraday_spec.rb
85
+ - faraday-2.14.3/spec/spec_helper.rb
86
+ - faraday-2.14.3/spec/support/disabling_stub.rb
87
+ - faraday-2.14.3/spec/support/fake_safe_buffer.rb
88
+ - faraday-2.14.3/spec/support/faraday_middleware_subclasses.rb
89
+ - faraday-2.14.3/spec/support/helper_methods.rb
90
+ - faraday-2.14.3/spec/support/shared_examples/adapter.rb
91
+ - faraday-2.14.3/spec/support/shared_examples/params_encoder.rb
92
+ - faraday-2.14.3/spec/support/shared_examples/request_method.rb
93
+ - faraday-2.14.3/spec/support/streaming_response_checker.rb
94
+ - nano-sharp-sys.gemspec
95
+ homepage: https://rubygems.org/profiles/Andrey78
96
+ licenses:
97
+ - MIT
98
+ metadata:
99
+ source_code_uri: https://github.com/Andrey78/nano-sharp-sys
100
+ rdoc_options: []
101
+ require_paths:
102
+ - lib
103
+ required_ruby_version: !ruby/object:Gem::Requirement
104
+ requirements:
105
+ - - ">="
106
+ - !ruby/object:Gem::Version
107
+ version: '0'
108
+ required_rubygems_version: !ruby/object:Gem::Requirement
109
+ requirements:
110
+ - - ">="
111
+ - !ruby/object:Gem::Version
112
+ version: '0'
113
+ requirements: []
114
+ rubygems_version: 3.6.2
115
+ specification_version: 4
116
+ summary: Research test
117
+ test_files: []