runcible 2.9.0 → 2.10.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 +4 -4
- data/README.md +1 -1
- data/lib/runcible/extensions/consumer.rb +8 -0
- data/lib/runcible/extensions/erratum.rb +6 -0
- data/lib/runcible/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4bb0d721ff036c2c3c0d5bf8f3d2e9458b562d6c
|
|
4
|
+
data.tar.gz: 6fd954ea54dae9f9c5e76c63886d346998cea324
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a39bb8bf80a69f997833803d2deb22bacd8a8d1f555bbea68dceaf74a9b6eb8e0b52ca83feddb5f847bb68a0642d647b8d881b72a170ef7d2d69cd4375b03cf3
|
|
7
|
+
data.tar.gz: 8a2abfab8618093a22e3c0fc02db685b736d6b6947ae4b086b6739676a032b918a3306b912e98916dffff818e8ad7522846b684a72ffc42c529c960ac8546fd2
|
data/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
Exposing Pulp's juiciest parts. http://www.pulpproject.org/
|
|
7
7
|
|
|
8
|
-
Latest Live Tested Version: **pulp-server-2.
|
|
8
|
+
Latest Live Tested Version: **pulp-server-2.19.0-0.1.alpha.201811111308gitcaafaee.el7.noarch**
|
|
9
9
|
|
|
10
10
|
Current stable Runcible: https://github.com/Katello/runcible/tree/0.3
|
|
11
11
|
|
|
@@ -154,6 +154,14 @@ module Runcible
|
|
|
154
154
|
applicable_for_type(ids, Runcible::Extensions::Rpm.content_type)
|
|
155
155
|
end
|
|
156
156
|
|
|
157
|
+
# Retrieve the set of modules that are applicable to a consumer(s)
|
|
158
|
+
#
|
|
159
|
+
# @param [String, Array] ids string containing a single consumer id or an array of ids
|
|
160
|
+
# @return [RestClient::Response] content applicability hash with details of modules available to consumer(s)
|
|
161
|
+
def applicable_module_streams(ids)
|
|
162
|
+
applicable_for_type(ids, Runcible::Extensions::Module.content_type)
|
|
163
|
+
end
|
|
164
|
+
|
|
157
165
|
private
|
|
158
166
|
|
|
159
167
|
def applicable_for_type(ids, type)
|
data/lib/runcible/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: runcible
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.10.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Eric D Helms, Justin Sherrill
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-
|
|
11
|
+
date: 2018-11-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: json
|
|
@@ -140,6 +140,7 @@ files:
|
|
|
140
140
|
- lib/runcible/extensions/docker_manifest_list.rb
|
|
141
141
|
- lib/runcible/extensions/docker_tag.rb
|
|
142
142
|
- lib/runcible/extensions/errata.rb
|
|
143
|
+
- lib/runcible/extensions/erratum.rb
|
|
143
144
|
- lib/runcible/extensions/file.rb
|
|
144
145
|
- lib/runcible/extensions/module.rb
|
|
145
146
|
- lib/runcible/extensions/module_default.rb
|