pulp_certguard_client 0.1.0rc4 → 0.1.0rc5
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 655e423c690ea68da0cb89da58eaddd618d9247b1aaaa7e9b17599915df4c2b1
|
|
4
|
+
data.tar.gz: 9d45ec87c1fb5d56ab2bb5e3fe1cbaea976ec77ef152d0954f94ade8d9922a93
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 48279bb7115a31c1158a5c9157a294f2edf5435af212f6a0524f96a315cd2f224c42af0fdaba489a866a1874fba19fbe733b757e9bdbd44bcc6fee39527b52c2
|
|
7
|
+
data.tar.gz: 6510179a496e96509747ba48fb9d8c43c339bc7caf530902796875a8430addb270a3f460b96d5e9d87a44a23de7394b7476688210b50e503c14f420c72dd38ba
|
data/README.md
CHANGED
|
@@ -7,7 +7,7 @@ No description provided (generated by Openapi Generator https://github.com/opena
|
|
|
7
7
|
This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
|
8
8
|
|
|
9
9
|
- API version: v3
|
|
10
|
-
- Package version: 0.1.
|
|
10
|
+
- Package version: 0.1.0rc5
|
|
11
11
|
- Build package: org.openapitools.codegen.languages.RubyClientCodegen
|
|
12
12
|
|
|
13
13
|
## Installation
|
|
@@ -23,16 +23,16 @@ gem build pulp_certguard_client.gemspec
|
|
|
23
23
|
Then either install the gem locally:
|
|
24
24
|
|
|
25
25
|
```shell
|
|
26
|
-
gem install ./pulp_certguard_client-0.1.
|
|
26
|
+
gem install ./pulp_certguard_client-0.1.0rc5.gem
|
|
27
27
|
```
|
|
28
28
|
|
|
29
|
-
(for development, run `gem install --dev ./pulp_certguard_client-0.1.
|
|
29
|
+
(for development, run `gem install --dev ./pulp_certguard_client-0.1.0rc5.gem` to install the development dependencies)
|
|
30
30
|
|
|
31
31
|
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
|
|
32
32
|
|
|
33
33
|
Finally add this to the Gemfile:
|
|
34
34
|
|
|
35
|
-
gem 'pulp_certguard_client', '~> 0.1.
|
|
35
|
+
gem 'pulp_certguard_client', '~> 0.1.0rc5'
|
|
36
36
|
|
|
37
37
|
### Install from Git
|
|
38
38
|
|
|
@@ -78,7 +78,7 @@ end
|
|
|
78
78
|
|
|
79
79
|
## Documentation for API Endpoints
|
|
80
80
|
|
|
81
|
-
All URIs are relative to *http://
|
|
81
|
+
All URIs are relative to *http://pulp*
|
|
82
82
|
|
|
83
83
|
Class | Method | HTTP request | Description
|
|
84
84
|
------------ | ------------- | ------------- | -------------
|
|
@@ -122,7 +122,7 @@ module PulpCertguardClient
|
|
|
122
122
|
|
|
123
123
|
def initialize
|
|
124
124
|
@scheme = 'http'
|
|
125
|
-
@host = '
|
|
125
|
+
@host = 'pulp'
|
|
126
126
|
@base_path = ''
|
|
127
127
|
@api_key = {}
|
|
128
128
|
@api_key_prefix = {}
|
|
@@ -202,7 +202,7 @@ module PulpCertguardClient
|
|
|
202
202
|
def server_settings
|
|
203
203
|
[
|
|
204
204
|
{
|
|
205
|
-
url: "http://
|
|
205
|
+
url: "http://pulp/",
|
|
206
206
|
description: "No description provided",
|
|
207
207
|
}
|
|
208
208
|
]
|
data/spec/configuration_spec.rb
CHANGED
|
@@ -18,7 +18,7 @@ describe PulpCertguardClient::Configuration do
|
|
|
18
18
|
before(:each) do
|
|
19
19
|
# uncomment below to setup host and base_path
|
|
20
20
|
# require 'URI'
|
|
21
|
-
# uri = URI.parse("http://
|
|
21
|
+
# uri = URI.parse("http://pulp")
|
|
22
22
|
# PulpCertguardClient.configure do |c|
|
|
23
23
|
# c.host = uri.host
|
|
24
24
|
# c.base_path = uri.path
|
|
@@ -28,14 +28,14 @@ describe PulpCertguardClient::Configuration do
|
|
|
28
28
|
describe '#base_url' do
|
|
29
29
|
it 'should have the default value' do
|
|
30
30
|
# uncomment below to test default value of the base path
|
|
31
|
-
# expect(config.base_url).to eq("http://
|
|
31
|
+
# expect(config.base_url).to eq("http://pulp")
|
|
32
32
|
end
|
|
33
33
|
|
|
34
34
|
it 'should remove trailing slashes' do
|
|
35
35
|
[nil, '', '/', '//'].each do |base_path|
|
|
36
36
|
config.base_path = base_path
|
|
37
37
|
# uncomment below to test trailing slashes
|
|
38
|
-
# expect(config.base_url).to eq("http://
|
|
38
|
+
# expect(config.base_url).to eq("http://pulp")
|
|
39
39
|
end
|
|
40
40
|
end
|
|
41
41
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pulp_certguard_client
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.0rc5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- OpenAPI-Generator
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-05-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faraday
|