vgs_api_client 0.0.1.alpha202204281552 → 0.0.1.alpha202204291433

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f46c586a3cbee77440ce5bdc06e3cf1ce680fbeab097e30e45e8c24e2b6761e9
4
- data.tar.gz: ee604daedfdd2ff7311b6f3958bc47fe864324e6f8621027a300c5051b8c3fc4
3
+ metadata.gz: 9880e8ea4e9e673c7fa3ef2c885f3dbb1bb22f1285961941637cd2da89408b49
4
+ data.tar.gz: 8c304fe4a67ad602d13e6cbd8f87e431263191056e1dcc934c96f2811b1f6528
5
5
  SHA512:
6
- metadata.gz: da1258462c0b92d207fce58e63e76ba75525b289f86d0cf129cb46ca3ae8f563192e546a588dcd177c9f260d43897cb7027c474c5a396809d7623a614dd65d82
7
- data.tar.gz: d634ee460b7dea468c182057b0095a8e9175dbdece6d5a206134ef711db32fba75112fa042ed69c94d7f6485ea60c8f2f654f7f90f305543562daff3cf6f78ef
6
+ metadata.gz: 2e4b0ce46738d228ff2843e6aadff7512b2779422164ad07fe95646a257cb170427dd6305cf0aeb0f5c2a323d21821cd01bca45021bb6a0357549a545a45c6a6
7
+ data.tar.gz: 97b92db2d8b5195b69706fa859668914a6224c8b673da3151a06f0bb36024ff0b8206fc6f49f09fb2dd55b19a8ca5423490ac425e76ff8acf5f07cd513df09b5
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.alpha202204291433
@@ -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.alpha202204291433/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.alpha202204291433'
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.alpha202204291433'
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.alpha202204291433 . | xargs sed -i "s/0.0.1.alpha202204291433/${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.alpha202204291433 . | xargs sed -i "s/0.0.1.alpha202204291433/$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.alpha202204291433
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