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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f46c586a3cbee77440ce5bdc06e3cf1ce680fbeab097e30e45e8c24e2b6761e9
4
- data.tar.gz: ee604daedfdd2ff7311b6f3958bc47fe864324e6f8621027a300c5051b8c3fc4
3
+ metadata.gz: 8dbdbc21adccc7588c7bb07cb34843b8a0b528a0398cb68ef48c3227f3d48d02
4
+ data.tar.gz: 7c91ddbd0ef14766a22059ea86e4f21d38237a4af307759ebd2e6f157184a731
5
5
  SHA512:
6
- metadata.gz: da1258462c0b92d207fce58e63e76ba75525b289f86d0cf129cb46ca3ae8f563192e546a588dcd177c9f260d43897cb7027c474c5a396809d7623a614dd65d82
7
- data.tar.gz: d634ee460b7dea468c182057b0095a8e9175dbdece6d5a206134ef711db32fba75112fa042ed69c94d7f6485ea60c8f2f654f7f90f305543562daff3cf6f78ef
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.alpha202204281552
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.alpha202204281552/ruby"
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
@@ -11,5 +11,5 @@ OpenAPI Generator version: 5.4.0
11
11
  =end
12
12
 
13
13
  module VgsApiClient
14
- VERSION = '0.0.1.alpha202204281552'
14
+ VERSION = '0.0.1.alpha202204291416'
15
15
  end
data/lib/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module VGS
2
- VERSION = '0.0.1.alpha202204281552'
2
+ VERSION = '0.0.1.alpha202204291416'
3
3
  end
@@ -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]
@@ -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.alpha202204281552 . | xargs sed -i "s/0.0.1.alpha202204281552/${LIB_VERSION}/g"
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.alpha202204281552 . | xargs sed -i "s/0.0.1.alpha202204281552/$VERSION/g"
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
 
@@ -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 = "VGS API Client"
13
- s.description = "This gem maps to VGS Vault API"
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.alpha202204281552
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-28 00:00:00.000000000 Z
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: This gem maps to VGS Vault API
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: VGS API Client
135
+ summary: Very Good Security API Client
136
136
  test_files:
137
137
  - spec/api_client_spec.rb
138
138
  - spec/configuration_spec.rb