apimatic_core_interfaces 0.2.1 → 0.2.2
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 +6 -3
- data/lib/apimatic-core-interfaces/client/client_configuration.rb +2 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bb1641a899a871a9ce535ef8f0067428fadfeef40a4225caf6e2888f4efe2bba
|
4
|
+
data.tar.gz: 96cea708ad59e88a0d2f3058a2411718032fd1d68528ee374755b93f4fb90fe4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1c8ef44909e9ad1bd2b9fa303610b4b0850355b5d15f31544255fcc0857b8ba02115f36ca99d06fdbda44af94d53b2bb4aa99d46a75512c97e6f0734c3f1acb7
|
7
|
+
data.tar.gz: 831893359497ca2843612c9d3ff6b31b867e282e0c1483b4b145986963e9dd623157e3b82eb925a7a33e4debcc4539003a5d04997e67a1add8dbdb45453e5d9e
|
data/README.md
CHANGED
@@ -3,7 +3,8 @@
|
|
3
3
|
[](https://badge.fury.io/rb/apimatic_core_interfaces)
|
4
4
|
[![Linting][lint-badge]][lint-url]
|
5
5
|
[](https://github.com/rubocop/rubocop)
|
6
|
-
[![Maintainability][maintainability-
|
6
|
+
[![Maintainability Rating][maintainability-badge]][maintainability-url]
|
7
|
+
[![Vulnerabilities][vulnerabilities-badge]][vulnerabilities-url]
|
7
8
|
[![Licence][license-badge]][license-url]
|
8
9
|
|
9
10
|
## Introduction
|
@@ -43,7 +44,9 @@ gem 'apimatic_core_interfaces'
|
|
43
44
|
|
44
45
|
[lint-badge]: https://github.com/apimatic/core-interfaces-ruby/actions/workflows/lint-runner.yml/badge.svg
|
45
46
|
[lint-url]: https://github.com/apimatic/core-interfaces-ruby/actions/workflows/lint-runner.yml
|
46
|
-
[
|
47
|
-
[maintainability-url]: https://
|
47
|
+
[maintainability-badge]: https://sonarcloud.io/api/project_badges/measure?project=apimatic_core-interfaces-ruby&metric=sqale_rating
|
48
|
+
[maintainability-url]: https://sonarcloud.io/summary/new_code?id=apimatic_core-interfaces-ruby
|
49
|
+
[vulnerabilities-badge]: https://sonarcloud.io/api/project_badges/measure?project=apimatic_core-interfaces-ruby&metric=vulnerabilities
|
50
|
+
[vulnerabilities-url]: https://sonarcloud.io/summary/new_code?id=apimatic_core-interfaces-ruby
|
48
51
|
[license-badge]: https://img.shields.io/badge/licence-MIT-blue
|
49
52
|
[license-url]: LICENSE
|
@@ -4,6 +4,7 @@ module CoreLibrary
|
|
4
4
|
# for HTTP Client Configuration class.
|
5
5
|
class ClientConfiguration
|
6
6
|
attr_reader :timeout, :max_retries, :retry_interval, :backoff_factor, :retry_statuses,
|
7
|
-
:retry_methods, :connection, :adapter, :response_factory, :cache, :verify
|
7
|
+
:retry_methods, :connection, :adapter, :response_factory, :cache, :verify,
|
8
|
+
:proxy_settings
|
8
9
|
end
|
9
10
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: apimatic_core_interfaces
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.2
|
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-12 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: This project contains the abstract layer for APIMatic's core library.
|
14
14
|
The purpose of creating interfaces is to separate out the functionalities needed
|
@@ -38,7 +38,7 @@ homepage: https://apimatic.io
|
|
38
38
|
licenses:
|
39
39
|
- MIT
|
40
40
|
metadata: {}
|
41
|
-
post_install_message:
|
41
|
+
post_install_message:
|
42
42
|
rdoc_options: []
|
43
43
|
require_paths:
|
44
44
|
- lib
|
@@ -54,7 +54,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
54
54
|
version: '0'
|
55
55
|
requirements: []
|
56
56
|
rubygems_version: 3.4.19
|
57
|
-
signing_key:
|
57
|
+
signing_key:
|
58
58
|
specification_version: 4
|
59
59
|
summary: An abstract layer of the functionalities provided by apimatic-core, faraday-client-adapter
|
60
60
|
and APIMatic SDKs.
|