smart_proxy_pulp 3.1.0 → 3.2.0

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: 530d39840a6bb5adb12546ec4c3e4fa50616e616ebadef98243076d9bd6d6692
4
- data.tar.gz: ba3525a72ef1b4367519147166d71b03cc076b2ac7f101a7b0d31886f2a8529e
3
+ metadata.gz: 8ed75491dd5597b9032d38132676920c2d1ddfc5e52b9462bec134a8188719f4
4
+ data.tar.gz: a7994ef607521731efa8e2c815825fb3b68227bb0439cd755bf0119d5f59e4bc
5
5
  SHA512:
6
- metadata.gz: fb0ae49fe75c6a216182e430d9eff93bb509482fd84b48b36a39591ad2a2440824f964b09f4976ce34c14607fe782c9d9ecd805f19e17630d6d3ac248eac7361
7
- data.tar.gz: 1bc3741848e30b49bf2cfed07bdd81c68b37a59db888e2ace7a203a20ddbf890a79b055c5982fd088bb121fd4d33325c1771341c6cd91eab9976d0135b58d7c6
6
+ metadata.gz: 90a817e0ee2c6b583e907c048ea6f1178777532463a6df2fc4ef3a8fc050e3f119f8711cd23e0a69672f274d811a896d6791556dcd6fdfc53a9a2b1383b9af6b
7
+ data.tar.gz: 3781082d3bf8644f9cb32c777bcf88d1642a4d77d3acb4ec3fa137cc6ec4a7493c66b2be758c4b19b8e7afefe94af21f0b8b50887796fa0f970f8b6e69ac6178
@@ -6,7 +6,8 @@ module PulpProxy
6
6
  default_settings :pulp_url => 'https://localhost',
7
7
  :content_app_url => 'https://localhost:24816/',
8
8
  :mirror => false,
9
- :client_authentication => ['password', 'client_certificate']
9
+ :client_authentication => ['password', 'client_certificate'],
10
+ :rhsm_url => 'https://localhost/rhsm'
10
11
 
11
12
  AUTH_TYPES = ['password', 'client_certificate', 'client_certificate_admin_only'].freeze
12
13
 
@@ -14,6 +15,7 @@ module PulpProxy
14
15
  validate :pulp_url, :url => true
15
16
  validate :content_app_url, :url => true
16
17
  validate :client_authentication, :include => AUTH_TYPES
18
+ validate :rhsm_url, :url => true
17
19
 
18
20
  expose_setting :pulp_url
19
21
  expose_setting :mirror
@@ -21,6 +23,7 @@ module PulpProxy
21
23
  expose_setting :username
22
24
  expose_setting :password
23
25
  expose_setting :client_authentication
26
+ expose_setting :rhsm_url
24
27
 
25
28
  capability -> { PulpcoreClient.capabilities }
26
29
  rackup_path File.expand_path('pulpcore_http_config.ru', __dir__)
@@ -1,3 +1,3 @@
1
1
  module PulpProxy
2
- VERSION = "3.1.0"
2
+ VERSION = "3.2.0"
3
3
  end
@@ -6,3 +6,4 @@
6
6
  #:password: password
7
7
  #:mirror: false
8
8
  #:client_authentication: ['password', 'client_certificate']
9
+ #:rhsm_url: https://localhost/rhsm
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: smart_proxy_pulp
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.0
4
+ version: 3.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dmitri Dolguikh
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-06-22 00:00:00.000000000 Z
11
+ date: 2021-09-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: test-unit