pulp_certguard_client 0.1.0rc4 → 0.1.0rc5

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: 526a2b2316611c9a21831749cd197f7c36a562dd1cb679a5e8e3e22170377de9
4
- data.tar.gz: 7d1234381eaba524a30f7b75871fa995e61716a21a37dbfdc6914864a9c4be1b
3
+ metadata.gz: 655e423c690ea68da0cb89da58eaddd618d9247b1aaaa7e9b17599915df4c2b1
4
+ data.tar.gz: 9d45ec87c1fb5d56ab2bb5e3fe1cbaea976ec77ef152d0954f94ade8d9922a93
5
5
  SHA512:
6
- metadata.gz: f4eea585b6851fb5533c2227641db397a17b8cb092f940f66a36c88145be87986264927d7a49258b8b1a2c2bdf153ae93957d0c4bbaacf387ab46c2f4fff22cd
7
- data.tar.gz: e437d7be27eeff4374cab0efd09af25a8caaff0817311ea0b369258aeefecb33fc743bbd123ef92658003dbcdbdc596a8b89b1029ff97dc354d0d39fc0e950b4
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.0rc4
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.0rc4.gem
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.0rc4.gem` to install the development dependencies)
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.0rc4'
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://localhost:24817*
81
+ All URIs are relative to *http://pulp*
82
82
 
83
83
  Class | Method | HTTP request | Description
84
84
  ------------ | ------------- | ------------- | -------------
@@ -1,6 +1,6 @@
1
1
  # PulpCertguardClient::ContentguardsRhsmApi
2
2
 
3
- All URIs are relative to *http://localhost:24817*
3
+ All URIs are relative to *http://pulp*
4
4
 
5
5
  Method | HTTP request | Description
6
6
  ------------- | ------------- | -------------
@@ -1,6 +1,6 @@
1
1
  # PulpCertguardClient::ContentguardsX509Api
2
2
 
3
- All URIs are relative to *http://localhost:24817*
3
+ All URIs are relative to *http://pulp*
4
4
 
5
5
  Method | HTTP request | Description
6
6
  ------------- | ------------- | -------------
@@ -122,7 +122,7 @@ module PulpCertguardClient
122
122
 
123
123
  def initialize
124
124
  @scheme = 'http'
125
- @host = 'localhost'
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://localhost:24817/",
205
+ url: "http://pulp/",
206
206
  description: "No description provided",
207
207
  }
208
208
  ]
@@ -11,5 +11,5 @@ OpenAPI Generator version: 4.2.3
11
11
  =end
12
12
 
13
13
  module PulpCertguardClient
14
- VERSION = '0.1.0rc4'
14
+ VERSION = '0.1.0rc5'
15
15
  end
@@ -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://localhost:24817")
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://localhost:24817")
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://localhost:24817")
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.0rc4
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-04-23 00:00:00.000000000 Z
11
+ date: 2020-05-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday