vgs_api_client 0.0.1.alpha202204281552 → 0.0.1.alpha202204291416
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 +2 -2
- data/VERSION +1 -1
- data/lib/openapi_client/api_client.rb +1 -1
- data/lib/openapi_client/version.rb +1 -1
- data/lib/version.rb +1 -1
- data/lib/vgs_api_client.rb +1 -1
- data/scripts/assemble/run.sh +1 -1
- data/scripts/test/run.sh +1 -1
- data/vgs_api_client.gemspec +2 -2
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8dbdbc21adccc7588c7bb07cb34843b8a0b528a0398cb68ef48c3227f3d48d02
|
4
|
+
data.tar.gz: 7c91ddbd0ef14766a22059ea86e4f21d38237a4af307759ebd2e6f157184a731
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5a631b4e97e2a240c010de6420fb46c7651cfbac4cd8e4e0ef0a01897fa7a27bc50e30d7994f40707252827acbe8a8a1c1c8f1ecd0c13e6c3379b2778bc1a6ad
|
7
|
+
data.tar.gz: cc3363490e40cae834bf8770c750439d774e5dabf36681588f1d5a0339534c823b8b6ded279a78b1916df4ef35d175b8e06005a90dc456cc64843a6292bc762c
|
data/README.md
CHANGED
@@ -16,11 +16,11 @@ gem install vgs-api-client
|
|
16
16
|
|
17
17
|
### Development
|
18
18
|
|
19
|
-
Follow [DEVELOPMENT](DEVELOPMENT.md) instruction.
|
19
|
+
Follow [DEVELOPMENT](https://github.com/verygoodsecurity/vgs-api-client-ruby/blob/master/DEVELOPMENT.md) instruction.
|
20
20
|
|
21
21
|
### Release
|
22
22
|
|
23
|
-
Follow [RELEASE](RELEASE.md) instruction.
|
23
|
+
Follow [RELEASE](https://github.com/verygoodsecurity/vgs-api-client-ruby/blob/master/RELEASE.md) instruction.
|
24
24
|
|
25
25
|
### Documentation
|
26
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.1.
|
1
|
+
0.0.1.alpha202204291416
|
@@ -31,7 +31,7 @@ module VgsApiClient
|
|
31
31
|
# @option config [Configuration] Configuration for initializing the object, default to Configuration.default
|
32
32
|
def initialize(config = Configuration.default)
|
33
33
|
@config = config
|
34
|
-
@user_agent = "vgs-api-client/0.0.1.
|
34
|
+
@user_agent = "vgs-api-client/0.0.1.alpha202204291416/ruby"
|
35
35
|
@default_headers = {
|
36
36
|
'Content-Type' => 'application/json',
|
37
37
|
'User-Agent' => @user_agent
|
data/lib/version.rb
CHANGED
data/lib/vgs_api_client.rb
CHANGED
@@ -13,7 +13,7 @@ module VGS
|
|
13
13
|
begin
|
14
14
|
requests = data.map do |item|
|
15
15
|
VgsApiClient::CreateAliasesRequestNew.new(attributes = {
|
16
|
-
:format => VgsApiClient::AliasFormat.build_from_hash(item[:format]),
|
16
|
+
:format => VgsApiClient::AliasFormat.build_from_hash(item[:format] || "UUID"),
|
17
17
|
:classifiers => item[:classifiers],
|
18
18
|
:value => item[:value],
|
19
19
|
:storage => item[:storage]
|
data/scripts/assemble/run.sh
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
LIB_VERSION=${LIB_VERSION:-0.0.1.alpha$(date "+%Y%m%d%H%M")}
|
4
4
|
|
5
5
|
# fix version
|
6
|
-
grep -rl 0.0.1.
|
6
|
+
grep -rl 0.0.1.alpha202204291416 . | xargs sed -i "s/0.0.1.alpha202204291416/${LIB_VERSION}/g"
|
7
7
|
|
8
8
|
# build
|
9
9
|
gem build vgs_api_client.gemspec
|
data/scripts/test/run.sh
CHANGED
@@ -5,7 +5,7 @@ set -e
|
|
5
5
|
echo "Installing lib from local sources"
|
6
6
|
# fix version
|
7
7
|
VERSION=0.0.1.alpha$(date "+%Y%m%d%H%M")
|
8
|
-
grep -rl 0.0.1.
|
8
|
+
grep -rl 0.0.1.alpha202204291416 . | xargs sed -i "s/0.0.1.alpha202204291416/$VERSION/g"
|
9
9
|
|
10
10
|
bundle install
|
11
11
|
|
data/vgs_api_client.gemspec
CHANGED
@@ -9,8 +9,8 @@ Gem::Specification.new do |s|
|
|
9
9
|
s.authors = ["Very Good Security"]
|
10
10
|
s.email = ["support@verygoodsecurity.com"]
|
11
11
|
s.homepage = "https://github.com/verygoodsecurity/vgs-api-client-ruby"
|
12
|
-
s.summary = "
|
13
|
-
s.description = "
|
12
|
+
s.summary = "Very Good Security API Client"
|
13
|
+
s.description = "Very Good Security API Client library. More details on https://www.verygoodsecurity.com/"
|
14
14
|
s.license = "BSD-3-Clause"
|
15
15
|
s.required_ruby_version = ">= 2.6"
|
16
16
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vgs_api_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.1.
|
4
|
+
version: 0.0.1.alpha202204291416
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Very Good Security
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-04-
|
11
|
+
date: 2022-04-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|
@@ -50,7 +50,7 @@ dependencies:
|
|
50
50
|
- - ">="
|
51
51
|
- !ruby/object:Gem::Version
|
52
52
|
version: 3.6.0
|
53
|
-
description:
|
53
|
+
description: Very Good Security API Client library. More details on https://www.verygoodsecurity.com/
|
54
54
|
email:
|
55
55
|
- support@verygoodsecurity.com
|
56
56
|
executables: []
|
@@ -132,7 +132,7 @@ requirements: []
|
|
132
132
|
rubygems_version: 3.3.7
|
133
133
|
signing_key:
|
134
134
|
specification_version: 4
|
135
|
-
summary:
|
135
|
+
summary: Very Good Security API Client
|
136
136
|
test_files:
|
137
137
|
- spec/api_client_spec.rb
|
138
138
|
- spec/configuration_spec.rb
|