apimatic_core_interfaces 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE +21 -26
  3. data/README.md +2 -4
  4. metadata +4 -4
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 79f8cde8fe5c6a5cec765e78448c3e72d82a11d5c1a447ec54210e4d0064264e
4
- data.tar.gz: 34cd4ac1a8463c474666a735c8d7df65651ba37b0a233d942bc11b02bca5aebf
3
+ metadata.gz: c030a041841cf1a3866d1b6b56e872037665bea6588f9d10e94e217ffd0cc2f3
4
+ data.tar.gz: f28625784fcf40cacfb68dfbaa3395ce0811716ecc9661bed13da5a0bb6ac7e9
5
5
  SHA512:
6
- metadata.gz: 39e69b43f329bd3c0bd16e3e47aef0c80062549af0ebd82304df9a3d03ad922235a604d9ee0bab799c782ac7c13be33df60a665ed9417ce792a126e23cb68532
7
- data.tar.gz: 62e5d85255b6ee92c7cdfda9de3ee1a798903bea0d6edf29a51cd9749e0959b829e36c3dd118c6d78c132e5e163d8019b2916983e03ac8ccf9529f2efa0d8d8d
6
+ metadata.gz: 739f1d954d50f9f9ac162d6054ed1b0f61a90bad5e8ffdc5ae3ff27c2b0cd5edd24bc1b6e946fd77929f4f0d200406592781a08e598583d71730062c98858467
7
+ data.tar.gz: 3ff3f294fa29949e0d6277346a8d9ea52670024fb546bef569c49a5398d429f3901875959d816275ace7bd43a71f1a2dec2def78c5ad56239f7a637f08cb022d
data/LICENSE CHANGED
@@ -1,26 +1,21 @@
1
- APIMATIC REFERENCE SOURCE LICENSE
2
-
3
- This license governs the use of the accompanying software. If you use the software, you accept this license. If you do not accept the license, do not use the software.
4
-
5
- 1. Definitions
6
- The terms "reproduce," "reproduction" and "distribution" have the same meaning here as under U.S. copyright law.
7
-
8
- "You" means the licensee of the software.
9
-
10
- "Your company" means the company you worked for when you downloaded the software.
11
-
12
- "Reference use" means the use of the software within your company as a reference, in read-only form, for the sole purposes of debugging your products, maintaining your products, or enhancing the interoperability of your products with the software, and specifically excludes the right to distribute the software outside of your company.
13
-
14
- "Licensed patents" means any Licensor patent claims which read directly on the software as distributed by the Licensor under this license.
15
-
16
- 2. Grant of Rights
17
- (A) Copyright Grant- Subject to the terms of this license, the Licensor grants you a non-transferable, non-exclusive, worldwide, royalty-free copyright license to reproduce the software for reference use.
18
-
19
- (B) Patent Grant- Subject to the terms of this license, the Licensor grants you a non-transferable, non-exclusive, worldwide, royalty-free patent license under licensed patents for reference use.
20
-
21
- 3. Limitations
22
- (A) No Trademark License- This license does not grant you any rights to use the Licensor's name, logo, or trademarks.
23
-
24
- (B) If you begin patent litigation against the Licensor over patents that you think may apply to the software (including a cross-claim or counterclaim in a lawsuit), your license to the software ends automatically.
25
-
26
- (C) The software is licensed "as-is." You bear the risk of using it. The Licensor gives no express warranties, guarantees or conditions. You may have additional consumer rights under your local laws which this license cannot change. To the extent permitted under your local laws, the Licensor excludes the implied warranties of merchantability, fitness for a particular purpose and non-infringement.
1
+ MIT License
2
+
3
+ Copyright (c) 2023 APIMatic Ltd
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # apimatic-core-interfaces
2
2
 
3
- [//]: # ([![PyPI][rubygems-version]](https://pypi.org/project/apimatic-core-interfaces/))
3
+ [![Gem Version](https://badge.fury.io/rb/apimatic_core_interfaces.svg)](https://badge.fury.io/rb/apimatic_core_interfaces)
4
4
  [![Linting][lint-badge]][lint-url]
5
5
  [![Ruby Style Guide](https://img.shields.io/badge/code_style-rubocop-brightgreen.svg)](https://github.com/rubocop/rubocop)
6
6
  [![Maintainability][maintainability-url]][code-climate-url]
@@ -39,11 +39,9 @@ gem 'apimatic_core_interfaces'
39
39
  | [`HttpMethod`](lib/apimatic-core-interfaces/types/http_method.rb) | Enumeration containing HTTP Methods (GET, PUT, POST, PATCH, DELETE, HEAD) |
40
40
  | [`ArraySerializationFormat`](lib/apimatic-core-interfaces/types/array_serialization_format.rb) | Enumeration containing different array serialization formats (INDEXED, UNINDEXED, PLAIN, CSV, PSV, TSV) |
41
41
 
42
- [rubymine-version]: https://img.shields.io/pypi/v/apimatic-core-interfaces
43
42
  [lint-badge]: https://github.com/apimatic/core-interfaces-ruby/actions/workflows/lint-runner.yml/badge.svg
44
43
  [lint-url]: https://github.com/apimatic/core-interfaces-ruby/actions/workflows/lint-runner.yml
45
44
  [code-climate-url]: https://codeclimate.com/github/apimatic/core-interfaces-ruby
46
45
  [maintainability-url]: https://api.codeclimate.com/v1/badges/6557a25e71f7e97e4bb5/maintainability
47
- [license-badge]: https://img.shields.io/badge/licence-APIMATIC-blue
46
+ [license-badge]: https://img.shields.io/badge/licence-MIT-blue
48
47
  [license-url]: LICENSE
49
-
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.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - APIMatic Ltd.
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-12-28 00:00:00.000000000 Z
11
+ date: 2023-02-16 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
@@ -33,7 +33,7 @@ files:
33
33
  - lib/apimatic_core_interfaces.rb
34
34
  homepage: https://apimatic.io
35
35
  licenses:
36
- - APIMATIC REFERENCE SOURCE LICENSE
36
+ - MIT
37
37
  metadata: {}
38
38
  post_install_message:
39
39
  rdoc_options: []
@@ -50,7 +50,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
50
50
  - !ruby/object:Gem::Version
51
51
  version: '0'
52
52
  requirements: []
53
- rubygems_version: 3.4.1
53
+ rubygems_version: 3.4.6
54
54
  signing_key:
55
55
  specification_version: 4
56
56
  summary: An abstract layer of the functionalities provided by apimatic-core, faraday-client-adapter