vgs_api_client 0.0.26 → 0.0.27
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 +4 -4
- data/lib/vgs_api_client/api_client.rb +1 -1
- data/lib/vgs_api_client/version.rb +1 -1
- data/publish/build_and_publish.sh +1 -1
- data/test/Dockerfile +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a202336f7bf8ac294f42b228fa252932052b7eaca6a2a376206e98eaf94b3053
|
|
4
|
+
data.tar.gz: ebbf5246ade60ef57cc938f5fba3ff8a9bc0de487644373be57c7d749c70847e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3e0795189737b8213e67e8a71539a06ec88e271a214605b55ed1795d25cce5a2c44a6a8943c86ce274f0c1cb779a784cc18734b1fee1978ed1f9fa5e8f13d65d
|
|
7
|
+
data.tar.gz: a499c1c304d6682a81a7970d0acbfc18183fe2e37fb8967d93457a9638e748cd8e67bd8eefaae915703c1e11a841253a7b21e957b3f1151a5c782340d4e14f07
|
data/README.md
CHANGED
|
@@ -127,7 +127,7 @@ following response:
|
|
|
127
127
|
This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
|
128
128
|
|
|
129
129
|
- API version: 1.0.0
|
|
130
|
-
- Package version: 0.0.
|
|
130
|
+
- Package version: 0.0.27
|
|
131
131
|
- Build package: org.openapitools.codegen.languages.RubyClientCodegen
|
|
132
132
|
|
|
133
133
|
## Installation
|
|
@@ -143,16 +143,16 @@ gem build vgs_api_client.gemspec
|
|
|
143
143
|
Then either install the gem locally:
|
|
144
144
|
|
|
145
145
|
```shell
|
|
146
|
-
gem install ./vgs_api_client-0.0.
|
|
146
|
+
gem install ./vgs_api_client-0.0.27.gem
|
|
147
147
|
```
|
|
148
148
|
|
|
149
|
-
(for development, run `gem install --dev ./vgs_api_client-0.0.
|
|
149
|
+
(for development, run `gem install --dev ./vgs_api_client-0.0.27.gem` to install the development dependencies)
|
|
150
150
|
|
|
151
151
|
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
|
|
152
152
|
|
|
153
153
|
Finally add this to the Gemfile:
|
|
154
154
|
|
|
155
|
-
gem 'vgs_api_client', '~> 0.0.
|
|
155
|
+
gem 'vgs_api_client', '~> 0.0.27'
|
|
156
156
|
|
|
157
157
|
### Install from Git
|
|
158
158
|
|
|
@@ -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 = "{{ user_agent_client_name }}{{ library_version }}{{ language_name }}/0.0.
|
|
34
|
+
@user_agent = "{{ user_agent_client_name }}{{ library_version }}{{ language_name }}/0.0.27/ruby"
|
|
35
35
|
@default_headers = {
|
|
36
36
|
'Content-Type' => 'application/json',
|
|
37
37
|
'User-Agent' => @user_agent
|
data/test/Dockerfile
CHANGED