vgs_api_client 0.0.1.dev202204190024 → 0.0.1.dev202204190627
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/lib/vgs_api_client/api_client.rb +1 -1
- data/lib/vgs_api_client/version.rb +1 -1
- data/scripts/assemble/run.sh +1 -1
- data/scripts/test/run.sh +3 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e62598aeba5609b545d4b63aa22db0bbe6d78fe19f034c7a5f84798cc2049bbd
|
4
|
+
data.tar.gz: 464f634b6ac83f3dffac44cd5c032f9ebb5722ab234a97594d0c05d6e46f74de
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fe1b812252a26ff37707520dac76f55816d83c2855ce79a3573c3e89f703039c6fe49e9eb895eab79933735d5946e4dae88e450dcd2b2e39d7d8fcb05f3c8dba
|
7
|
+
data.tar.gz: 2bccf7a9f0a5fc046db7c06309b5a721fc2e8112217f496c6ea415bb6a57e731173b1fd85b77d56c4129e3eca9588abb5391a46da9834d51841ab7fb468d846a
|
@@ -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.dev202204190627/ruby"
|
35
35
|
@default_headers = {
|
36
36
|
'Content-Type' => 'application/json',
|
37
37
|
'User-Agent' => @user_agent
|
data/scripts/assemble/run.sh
CHANGED
@@ -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.
|
6
|
+
grep -rl 0.0.1.dev202204190627 . | xargs sed -i "s/0.0.1.dev202204190627/${LIB_VERSION}/g"
|
7
7
|
|
8
8
|
# build
|
9
9
|
gem build vgs_api_client.gemspec
|
data/scripts/test/run.sh
CHANGED
@@ -12,6 +12,7 @@ if [[ -n "$TEST_AGAINST_PUBLISHED_LIB_VERSION" ]]; then
|
|
12
12
|
while [ $ATTEMPT -lt 60 ]; do
|
13
13
|
echo "Attempt ${ATTEMPT} ..."
|
14
14
|
|
15
|
+
bundle install --without production --binstubs
|
15
16
|
gem install vgs_api_client -v ${TEST_AGAINST_PUBLISHED_LIB_VERSION}
|
16
17
|
|
17
18
|
if [[ $? == 0 ]]; then
|
@@ -29,6 +30,6 @@ else
|
|
29
30
|
bundle install
|
30
31
|
fi
|
31
32
|
|
32
|
-
|
33
|
+
gem install rspec-support
|
33
34
|
|
34
|
-
bundle exec ./spec/test_api_spec.rb
|
35
|
+
bundle exec rspec ./spec/test_api_spec.rb
|
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.dev202204190627
|
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-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|