puppet_metadata 0.3.0 → 0.4.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 +27 -0
- data/lib/puppet_metadata/metadata.rb +5 -1
- metadata +14 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 87b930530ef333350feba4aff3093f9629293280fc03f007b0cc5d1236f4b4e9
|
|
4
|
+
data.tar.gz: 4937ff7c9ae29363e548ae246578a6400bbf69690a4a9eb34dcb73d55ce41002
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5eebec460da1fef928f71f4c3e2c94e55a138ad060c819046df8ee7b0bdce0d916c2b406f7e1e9e431f7c41e93a91b2950cabd06ddaca4f2896c60a2f3152f05
|
|
7
|
+
data.tar.gz: 835e8778b6d21ad36a74953c78e66ab93d2c828ce9b7b5088a7d795ee323749834f22245ea1e41873046b7b74c53f3b04b63d8d33d2415113e7deb46aff9b315
|
data/README.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# puppet_metadata
|
|
2
2
|
|
|
3
|
+
[](https://github.com/voxpupuli/puppet_metadata/blob/master/LICENSE)
|
|
4
|
+
[](https://github.com/voxpupuli/puppet_metadata/actions/workflows/test.yml)
|
|
5
|
+
[](https://codecov.io/gh/voxpupuli/puppet_metadata)
|
|
6
|
+
[](https://github.com/voxpupuli/puppet_metadata/actions/workflows/release.yml)
|
|
7
|
+
[](https://rubygems.org/gems/puppet_metadata)
|
|
8
|
+
[](https://rubygems.org/gems/puppet_metadata)
|
|
9
|
+
[](#copyright)
|
|
10
|
+
|
|
3
11
|
The gem intends to provide an abstraction over Puppet's metadata.json file. Its API allow easy iteration over its illogical data structures.
|
|
4
12
|
|
|
5
13
|
## Generating Github Actions outputs
|
|
@@ -90,3 +98,22 @@ This results in the following JSON data
|
|
|
90
98
|
```
|
|
91
99
|
|
|
92
100
|
It is also possible to specify a comma separated list of operating systems as used in `metadata.json` (`CentOS,Ubuntu`).
|
|
101
|
+
|
|
102
|
+
## Transfer Notice
|
|
103
|
+
|
|
104
|
+
This plugin was originally authored by [Ewoud Kohl van Wijngaarden](https://github.com/ekohl).
|
|
105
|
+
The maintainer preferred that [Vox Pupuli](https://voxpupuli.org/) take ownership of the module for future improvement and maintenance.
|
|
106
|
+
Existing pull requests and issues were transferred, please fork and continue to contribute [here](https://github.com/voxpupuli/puppet_metadata).
|
|
107
|
+
|
|
108
|
+
## License
|
|
109
|
+
|
|
110
|
+
This gem is licensed under the Apache-2 license.
|
|
111
|
+
|
|
112
|
+
## Release information
|
|
113
|
+
|
|
114
|
+
To make a new release, please do:
|
|
115
|
+
* Update the version in the puppet_metadata.gemspec file
|
|
116
|
+
* Install gems with `bundle install --with release --path .vendor`
|
|
117
|
+
* generate the changelog with `bundle exec rake changelog`
|
|
118
|
+
* Create a PR with it
|
|
119
|
+
* After it got merged, push a tag. A github workflow will do the actual release
|
|
@@ -141,7 +141,11 @@ module PuppetMetadata
|
|
|
141
141
|
requirement = requirements['puppet']
|
|
142
142
|
raise Exception, 'No Puppet requirement found' unless requirement
|
|
143
143
|
|
|
144
|
-
|
|
144
|
+
# Current latest major is 7. It is highly recommended that modules
|
|
145
|
+
# actually specify exact bounds, but this prevents an infinite loop.
|
|
146
|
+
end_major = requirement.end == SemanticPuppet::Version::MAX ? 7 : requirement.end.major
|
|
147
|
+
|
|
148
|
+
(requirement.begin.major..end_major).select do |major|
|
|
145
149
|
requirement.include?(SemanticPuppet::Version.new(major, 0, 0)) || requirement.include?(SemanticPuppet::Version.new(major, 99, 99))
|
|
146
150
|
end
|
|
147
151
|
end
|
metadata
CHANGED
|
@@ -1,30 +1,36 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: puppet_metadata
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.4.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Vox Pupuli
|
|
8
8
|
- Ewoud Kohl van Wijngaarden
|
|
9
|
-
autorequire:
|
|
9
|
+
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date:
|
|
12
|
+
date: 2021-08-06 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: metadata-json-lint
|
|
16
16
|
requirement: !ruby/object:Gem::Requirement
|
|
17
17
|
requirements:
|
|
18
|
-
- - "
|
|
18
|
+
- - ">="
|
|
19
19
|
- !ruby/object:Gem::Version
|
|
20
20
|
version: '2.0'
|
|
21
|
+
- - "<"
|
|
22
|
+
- !ruby/object:Gem::Version
|
|
23
|
+
version: '4'
|
|
21
24
|
type: :runtime
|
|
22
25
|
prerelease: false
|
|
23
26
|
version_requirements: !ruby/object:Gem::Requirement
|
|
24
27
|
requirements:
|
|
25
|
-
- - "
|
|
28
|
+
- - ">="
|
|
26
29
|
- !ruby/object:Gem::Version
|
|
27
30
|
version: '2.0'
|
|
31
|
+
- - "<"
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '4'
|
|
28
34
|
- !ruby/object:Gem::Dependency
|
|
29
35
|
name: semantic_puppet
|
|
30
36
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -129,7 +135,7 @@ homepage: http://github.com/voxpupuli/puppet_metadata
|
|
|
129
135
|
licenses:
|
|
130
136
|
- Apache-2.0
|
|
131
137
|
metadata: {}
|
|
132
|
-
post_install_message:
|
|
138
|
+
post_install_message:
|
|
133
139
|
rdoc_options:
|
|
134
140
|
- "--main"
|
|
135
141
|
- README.md
|
|
@@ -146,8 +152,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
146
152
|
- !ruby/object:Gem::Version
|
|
147
153
|
version: '0'
|
|
148
154
|
requirements: []
|
|
149
|
-
rubygems_version: 3.
|
|
150
|
-
signing_key:
|
|
155
|
+
rubygems_version: 3.2.22
|
|
156
|
+
signing_key:
|
|
151
157
|
specification_version: 4
|
|
152
158
|
summary: Data structures for the Puppet Metadata
|
|
153
159
|
test_files: []
|