vgs_api_client 0.0.1.dev202204190002 → 0.0.1.dev202204190005

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: b85512828658fbe31ef787de8eb4e697d829bf7db16474f9081fdbed310f9f01
4
- data.tar.gz: 154aa681ad64f36c20ae576c8f7dec9bc7e89a63c7233ade8956de0eaedb5784
3
+ metadata.gz: f28ca2c0e1c2f97d30b2c58d0f46886a3e5fb7492464bb01c1225c83d764ddd3
4
+ data.tar.gz: 8521c9993ff8d618b287c8a2570da9a39f790146411c4dc362868a5932ddcbbe
5
5
  SHA512:
6
- metadata.gz: 0f928f588639e28ab889bc0a75b6415ec8d3885f419765f798c437db2430a8c2c1126786a0729259ad1dfa0ea05bbb39ab872063135b50a64e28fe1b5fa949ac
7
- data.tar.gz: 04a821f59735ef82239d9f33efc28ceaaf443c2788d75b15042509efbc46dca370393d2e6fbaeb0304bbc2e7bdc1553bce947e4507bd7641c23f4aa35f6d229c
6
+ metadata.gz: c4080dc489d7603ab6a5b2eac59293a23854adb95d9564987f29a1e932a6b582e84bdf477fb79782c2f1994a8ebddb177c740fe460a624e4ad65a57b69ad53e2
7
+ data.tar.gz: 75102161002024c83e6f84d3d9d4fb9700216b26b54339bf498b0a7495c81eea10cf0b6b7d02d7f71cd946e3bd0dd884319804e21aa22d4a8d5f0bbda326b738
@@ -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.dev202204190002/ruby"
34
+ @user_agent = "vgs-api-client/0.0.1.dev202204190005/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.dev202204190002'
14
+ VERSION = '0.0.1.dev202204190005'
15
15
  end
@@ -3,7 +3,7 @@
3
3
  LIB_VERSION=${LIB_VERSION:-0.0.1.dev$(date "+%Y%m%d%H%M")}
4
4
 
5
5
  # fix version
6
- grep -rl 0.0.1.dev202204190002 . | xargs sed -i "s/0.0.1.dev202204190002/${LIB_VERSION}/g"
6
+ grep -rl 0.0.1.dev202204190005 . | xargs sed -i "s/0.0.1.dev202204190005/${LIB_VERSION}/g"
7
7
 
8
8
  # build
9
9
  gem build vgs_api_client.gemspec
data/scripts/test/run.sh CHANGED
@@ -5,9 +5,25 @@ set -e
5
5
  rm vgs_api_client-*.gem || true
6
6
 
7
7
  if [[ -n "$TEST_AGAINST_PUBLISHED_LIB_VERSION" ]]; then
8
- echo "Installing lib from rubygems.org ${TEST_AGAINST_PUBLISHED_LIB_VERSION} ..."
8
+ echo "Installing lib from rubygems.org ${TEST_AGAINST_PUBLISHED_LIB_VERSION} ..."
9
+
10
+ set +e
11
+ ATTEMPT=1
12
+ while [ $ATTEMPT -lt 60 ]; do
13
+ echo "Attempt ${ATTEMPT} ..."
9
14
 
10
15
  gem install vgs_api_client -v ${TEST_AGAINST_PUBLISHED_LIB_VERSION}
16
+
17
+ if [[ $? == 0 ]]; then
18
+ echo "Installed ${TEST_AGAINST_PUBLISHED_LIB_VERSION}"
19
+ break
20
+ fi
21
+
22
+ ATTEMPT=$((ATTEMPT+1))
23
+
24
+ sleep 5
25
+ done
26
+ set -e
11
27
  else
12
28
  echo "Installing lib from local sources"
13
29
  bundle install
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vgs_api_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1.dev202204190002
4
+ version: 0.0.1.dev202204190005
5
5
  platform: ruby
6
6
  authors:
7
7
  - Very Good Security
@@ -59,7 +59,6 @@ extra_rdoc_files: []
59
59
  files:
60
60
  - DEVELOPMENT.md
61
61
  - Gemfile
62
- - Gemfile.lock
63
62
  - LICENSE
64
63
  - RELEASE.md
65
64
  - Rakefile
data/Gemfile.lock DELETED
@@ -1,70 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- vgs_api_client (0.0.1.dev202204190002)
5
- typhoeus (~> 1.0, >= 1.0.1)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- ast (2.4.2)
11
- byebug (11.1.3)
12
- coderay (1.1.3)
13
- diff-lcs (1.5.0)
14
- ethon (0.15.0)
15
- ffi (>= 1.15.0)
16
- ffi (1.15.5)
17
- jaro_winkler (1.5.4)
18
- method_source (1.0.0)
19
- parallel (1.22.1)
20
- parser (3.1.2.0)
21
- ast (~> 2.4.1)
22
- pry (0.13.1)
23
- coderay (~> 1.1)
24
- method_source (~> 1.0)
25
- pry-byebug (3.9.0)
26
- byebug (~> 11.0)
27
- pry (~> 0.13.0)
28
- psych (4.0.3)
29
- stringio
30
- rainbow (3.1.1)
31
- rake (13.0.6)
32
- rspec (3.11.0)
33
- rspec-core (~> 3.11.0)
34
- rspec-expectations (~> 3.11.0)
35
- rspec-mocks (~> 3.11.0)
36
- rspec-core (3.11.0)
37
- rspec-support (~> 3.11.0)
38
- rspec-expectations (3.11.0)
39
- diff-lcs (>= 1.2.0, < 2.0)
40
- rspec-support (~> 3.11.0)
41
- rspec-mocks (3.11.1)
42
- diff-lcs (>= 1.2.0, < 2.0)
43
- rspec-support (~> 3.11.0)
44
- rspec-support (3.11.0)
45
- rubocop (0.66.0)
46
- jaro_winkler (~> 1.5.1)
47
- parallel (~> 1.10)
48
- parser (>= 2.5, != 2.5.1.1)
49
- psych (>= 3.1.0)
50
- rainbow (>= 2.2.2, < 4.0)
51
- ruby-progressbar (~> 1.7)
52
- unicode-display_width (>= 1.4.0, < 1.6)
53
- ruby-progressbar (1.11.0)
54
- stringio (3.0.1)
55
- typhoeus (1.4.0)
56
- ethon (>= 0.9.0)
57
- unicode-display_width (1.5.0)
58
-
59
- PLATFORMS
60
- aarch64-linux-musl
61
-
62
- DEPENDENCIES
63
- pry-byebug
64
- rake (~> 13.0.1)
65
- rspec (~> 3.6, >= 3.6.0)
66
- rubocop (~> 0.66.0)
67
- vgs_api_client!
68
-
69
- BUNDLED WITH
70
- 2.3.11