apimatic_faraday_client_adapter 0.1.4 → 0.1.5
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 +4 -4
- data/README.md +10 -6
- metadata +16 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 44b16e76a6098644efca987620768bf50ef0ed57ac4cd2dd02922e2e0f8debc1
|
4
|
+
data.tar.gz: 39be7938bc9dbd0c283dc837845532ea25faede3ae90d59cc561e592b0700ed1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5bb0859d16a61cda2ed54446dbf89a4988bf71b5f0e186f38991294daf4cf3f19fd946dc25714412c5c2ecac84f8141c6bd71be732eaaad075be3dabd9e11a30
|
7
|
+
data.tar.gz: 6e0b7b108ba664575b39ac884c738697ba6b07e0508890328cc60ec434bcd098781a378824865b65396b15376cac0eeddc993f0b1714f5f2263dd81088118135
|
data/README.md
CHANGED
@@ -3,8 +3,9 @@
|
|
3
3
|
[](https://badge.fury.io/rb/apimatic_faraday_client_adapter)
|
4
4
|
[![Tests][test-badge]][test-url]
|
5
5
|
[![Linting][lint-badge]][lint-url]
|
6
|
-
[![
|
7
|
-
[![
|
6
|
+
[![Test Coverage][coverage-badge]][coverage-url]
|
7
|
+
[![Maintainability Rating][maintainability-badge]][maintainability-url]
|
8
|
+
[![Vulnerabilities][vulnerabilities-badge]][vulnerabilities-url]
|
8
9
|
[](https://github.com/rubocop/rubocop)
|
9
10
|
[![Licence][license-badge]][license-url]
|
10
11
|
|
@@ -12,7 +13,7 @@
|
|
12
13
|
This repository contains the client implementation that uses the faraday client library for the ruby SDKs provided by APIMatic.
|
13
14
|
|
14
15
|
## Version supported
|
15
|
-
Currently APIMatic supports `2.6 <= Ruby version <= 3.
|
16
|
+
Currently APIMatic supports `2.6 <= Ruby version <= 3.3` hence faraday-client-adapter will need the same versions to be supported.
|
16
17
|
|
17
18
|
## Installation
|
18
19
|
Installation is quite simple, just execute the following command:
|
@@ -47,8 +48,11 @@ gem 'apimatic_faraday_client_adapter'
|
|
47
48
|
[test-url]: https://github.com/apimatic/faraday-client-adapter/actions/workflows/test-runner.yml
|
48
49
|
[lint-badge]: https://github.com/apimatic/faraday-client-adapter/actions/workflows/lint-runner.yml/badge.svg
|
49
50
|
[lint-url]: https://github.com/apimatic/faraday-client-adapter/actions/workflows/lint-runner.yml
|
50
|
-
[
|
51
|
-
[
|
52
|
-
[
|
51
|
+
[coverage-badge]: https://sonarcloud.io/api/project_badges/measure?project=apimatic_faraday-client-adapter&metric=coverage
|
52
|
+
[coverage-url]: https://sonarcloud.io/summary/new_code?id=apimatic_faraday-client-adapter
|
53
|
+
[maintainability-badge]: https://sonarcloud.io/api/project_badges/measure?project=apimatic_faraday-client-adapter&metric=sqale_rating
|
54
|
+
[maintainability-url]: https://sonarcloud.io/summary/new_code?id=apimatic_faraday-client-adapter
|
55
|
+
[vulnerabilities-badge]: https://sonarcloud.io/api/project_badges/measure?project=apimatic_faraday-client-adapter&metric=vulnerabilities
|
56
|
+
[vulnerabilities-url]: https://sonarcloud.io/summary/new_code?id=apimatic_faraday-client-adapter
|
53
57
|
[license-badge]: https://img.shields.io/badge/licence-MIT-blue
|
54
58
|
[license-url]: LICENSE
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: apimatic_faraday_client_adapter
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- APIMatic Ltd.
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-08-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: apimatic_core_interfaces
|
@@ -76,16 +76,22 @@ dependencies:
|
|
76
76
|
name: faraday-gzip
|
77
77
|
requirement: !ruby/object:Gem::Requirement
|
78
78
|
requirements:
|
79
|
-
- - "
|
79
|
+
- - ">="
|
80
80
|
- !ruby/object:Gem::Version
|
81
|
-
version: '1
|
81
|
+
version: '1'
|
82
|
+
- - "<"
|
83
|
+
- !ruby/object:Gem::Version
|
84
|
+
version: '4'
|
82
85
|
type: :runtime
|
83
86
|
prerelease: false
|
84
87
|
version_requirements: !ruby/object:Gem::Requirement
|
85
88
|
requirements:
|
86
|
-
- - "
|
89
|
+
- - ">="
|
87
90
|
- !ruby/object:Gem::Version
|
88
|
-
version: '1
|
91
|
+
version: '1'
|
92
|
+
- - "<"
|
93
|
+
- !ruby/object:Gem::Version
|
94
|
+
version: '4'
|
89
95
|
- !ruby/object:Gem::Dependency
|
90
96
|
name: faraday-retry
|
91
97
|
requirement: !ruby/object:Gem::Requirement
|
@@ -212,7 +218,7 @@ homepage: https://apimatic.io
|
|
212
218
|
licenses:
|
213
219
|
- MIT
|
214
220
|
metadata: {}
|
215
|
-
post_install_message:
|
221
|
+
post_install_message:
|
216
222
|
rdoc_options: []
|
217
223
|
require_paths:
|
218
224
|
- lib
|
@@ -227,8 +233,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
227
233
|
- !ruby/object:Gem::Version
|
228
234
|
version: '0'
|
229
235
|
requirements: []
|
230
|
-
rubygems_version: 3.4.
|
231
|
-
signing_key:
|
236
|
+
rubygems_version: 3.4.19
|
237
|
+
signing_key:
|
232
238
|
specification_version: 4
|
233
239
|
summary: An adapter for faraday client library consumed by the SDKs generated with
|
234
240
|
APIMatic.
|