liblynx-api 1.2.1 → 1.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/.github/workflows/ci.yml +21 -0
- data/Gemfile.lock +23 -21
- data/README.md +1 -1
- data/lib/liblynx-api/client.rb +1 -1
- data/lib/liblynx-api/version.rb +1 -1
- metadata +5 -9
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b28217136add32091f1f7206e4b9d8ce34a6caa3b612a1dd356e9bf967170584
|
|
4
|
+
data.tar.gz: c122112d68478c2e75759137632ab2c067cb5bde3670b84c05d4a7b3e5195aa2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e22aeb23418bde30400a4ad799edb0bbc5c4425d044780178cee9138b3e0c20da5d28216fadb8b54e193c43b65a4eee578e47e609d5b804cfa900d5a61d6e063
|
|
7
|
+
data.tar.gz: bf7f7f333dfc9523007e64dfea9486b39a602b134fe90fec7c514ce6f7d2c67ddca84c58db2e210a703b43edd1ac0f65e944847be7f9055920302e0c58a68e34
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
name: CI
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
tags: ['v*']
|
|
6
|
+
|
|
7
|
+
jobs:
|
|
8
|
+
release:
|
|
9
|
+
if: startsWith(github.ref, 'refs/tags/v')
|
|
10
|
+
runs-on: ubuntu-latest
|
|
11
|
+
permissions:
|
|
12
|
+
id-token: write
|
|
13
|
+
contents: read
|
|
14
|
+
steps:
|
|
15
|
+
- uses: actions/checkout@v4
|
|
16
|
+
- uses: ruby/setup-ruby@v1
|
|
17
|
+
with:
|
|
18
|
+
ruby-version: '3.4'
|
|
19
|
+
- uses: rubygems/configure-rubygems-credentials@v1.0.0
|
|
20
|
+
- run: gem build liblynx-api.gemspec
|
|
21
|
+
- run: gem push liblynx-api-*.gem
|
data/Gemfile.lock
CHANGED
|
@@ -1,44 +1,46 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
liblynx-api (1.2.
|
|
4
|
+
liblynx-api (1.2.2)
|
|
5
5
|
heroics (~> 0.1)
|
|
6
6
|
moneta (~> 1.4)
|
|
7
7
|
|
|
8
8
|
GEM
|
|
9
9
|
remote: https://rubygems.org/
|
|
10
10
|
specs:
|
|
11
|
-
|
|
11
|
+
base64 (0.2.0)
|
|
12
|
+
diff-lcs (1.5.1)
|
|
12
13
|
erubis (2.7.0)
|
|
13
|
-
excon (0.
|
|
14
|
-
heroics (0.1.
|
|
14
|
+
excon (0.111.0)
|
|
15
|
+
heroics (0.1.3)
|
|
16
|
+
base64
|
|
15
17
|
erubis (~> 2.0)
|
|
16
18
|
excon
|
|
17
19
|
moneta
|
|
18
20
|
multi_json (>= 1.9.2)
|
|
19
21
|
webrick
|
|
20
22
|
json_schema (0.20.3)
|
|
21
|
-
moneta (1.
|
|
23
|
+
moneta (1.6.0)
|
|
22
24
|
multi_json (1.15.0)
|
|
23
|
-
prmd (0.
|
|
25
|
+
prmd (0.14.0)
|
|
24
26
|
erubis (~> 2.7)
|
|
25
27
|
json_schema (~> 0.3, >= 0.3.1)
|
|
26
|
-
rake (13.
|
|
27
|
-
rspec (3.
|
|
28
|
-
rspec-core (~> 3.
|
|
29
|
-
rspec-expectations (~> 3.
|
|
30
|
-
rspec-mocks (~> 3.
|
|
31
|
-
rspec-core (3.
|
|
32
|
-
rspec-support (~> 3.
|
|
33
|
-
rspec-expectations (3.
|
|
28
|
+
rake (13.2.1)
|
|
29
|
+
rspec (3.13.0)
|
|
30
|
+
rspec-core (~> 3.13.0)
|
|
31
|
+
rspec-expectations (~> 3.13.0)
|
|
32
|
+
rspec-mocks (~> 3.13.0)
|
|
33
|
+
rspec-core (3.13.1)
|
|
34
|
+
rspec-support (~> 3.13.0)
|
|
35
|
+
rspec-expectations (3.13.3)
|
|
34
36
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
35
|
-
rspec-support (~> 3.
|
|
36
|
-
rspec-mocks (3.
|
|
37
|
+
rspec-support (~> 3.13.0)
|
|
38
|
+
rspec-mocks (3.13.1)
|
|
37
39
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
38
|
-
rspec-support (~> 3.
|
|
39
|
-
rspec-support (3.
|
|
40
|
-
webrick (1.
|
|
41
|
-
yard (0.9.
|
|
40
|
+
rspec-support (~> 3.13.0)
|
|
41
|
+
rspec-support (3.13.1)
|
|
42
|
+
webrick (1.8.2)
|
|
43
|
+
yard (0.9.37)
|
|
42
44
|
|
|
43
45
|
PLATFORMS
|
|
44
46
|
ruby
|
|
@@ -55,4 +57,4 @@ DEPENDENCIES
|
|
|
55
57
|
yard
|
|
56
58
|
|
|
57
59
|
BUNDLED WITH
|
|
58
|
-
2.
|
|
60
|
+
2.5.18
|
data/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# LibLynx API [](https://github.com/dsablic/liblynx-api/actions/workflows/ci.yml) [](https://badge.fury.io/rb/liblynx-api) [](https://rubygems.org/gems/liblynx-api) [](https://opensource.org/licenses/MIT)
|
|
2
2
|
|
|
3
3
|
Ruby HTTP client for the LibLynx API.
|
|
4
4
|
|
data/lib/liblynx-api/client.rb
CHANGED
|
@@ -83,7 +83,7 @@ module LibLynxAPI
|
|
|
83
83
|
|
|
84
84
|
# Get the default options.
|
|
85
85
|
def self.default_options
|
|
86
|
-
default_headers = {"Accept"=>"application/json", "User-Agent"=>"liblynx-api/1.2.
|
|
86
|
+
default_headers = {"Accept"=>"application/json", "User-Agent"=>"liblynx-api/1.2.0"}
|
|
87
87
|
{
|
|
88
88
|
default_headers: default_headers,
|
|
89
89
|
url: "https://connect.liblynx.com"
|
data/lib/liblynx-api/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: liblynx-api
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.2.
|
|
4
|
+
version: 1.2.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Denis Sablic
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: bin
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
13
12
|
- !ruby/object:Gem::Dependency
|
|
14
13
|
name: bundler
|
|
@@ -136,13 +135,13 @@ dependencies:
|
|
|
136
135
|
- - "~>"
|
|
137
136
|
- !ruby/object:Gem::Version
|
|
138
137
|
version: '1.4'
|
|
139
|
-
description:
|
|
140
138
|
email:
|
|
141
139
|
- denis.sablic@gmail.com
|
|
142
140
|
executables: []
|
|
143
141
|
extensions: []
|
|
144
142
|
extra_rdoc_files: []
|
|
145
143
|
files:
|
|
144
|
+
- ".github/workflows/ci.yml"
|
|
146
145
|
- ".travis.yml"
|
|
147
146
|
- Gemfile
|
|
148
147
|
- Gemfile.lock
|
|
@@ -169,7 +168,6 @@ homepage: https://github.com/dsablic/liblynx-api
|
|
|
169
168
|
licenses:
|
|
170
169
|
- MIT
|
|
171
170
|
metadata: {}
|
|
172
|
-
post_install_message:
|
|
173
171
|
rdoc_options: []
|
|
174
172
|
require_paths:
|
|
175
173
|
- lib
|
|
@@ -184,9 +182,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
184
182
|
- !ruby/object:Gem::Version
|
|
185
183
|
version: '0'
|
|
186
184
|
requirements: []
|
|
187
|
-
rubygems_version: 3.
|
|
188
|
-
signing_key:
|
|
185
|
+
rubygems_version: 3.6.9
|
|
189
186
|
specification_version: 4
|
|
190
187
|
summary: Ruby client for the LibLynx API
|
|
191
|
-
test_files:
|
|
192
|
-
- spec/client_spec.rb
|
|
188
|
+
test_files: []
|