r10k-resolve 0.0.1
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 +7 -0
- data/LICENSE +177 -0
- data/README.md +84 -0
- data/bin/r10k-resolve +55 -0
- data/lib/r10k-resolve/version.rb +3 -0
- data/lib/r10k-resolve.rb +55 -0
- metadata +65 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 37e0de2b0e457b3bc3df046261cefbfe36b81ce71f4a93608b377a2274c050e3
|
|
4
|
+
data.tar.gz: 1074efe7927ce6d969eefca1c284e1dfc24cacebf91f2feb011c102fe38c0f90
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 92af417a965c4ab4a625c94d98db7b46c89a42ba19fa43db7dec812e20e2f26f20151e492e10be2bd6cf8c48478707025f2a093ff3b259934a33614b7f97af6c
|
|
7
|
+
data.tar.gz: 840bcf974aa79d500c1e5f757edca8d2d3f42c47e1641eeb7c3cc3a2d039a70c204df578beb022043179136751bff311de92bc91305ea1a7babde6f1c4c1cf42
|
data/LICENSE
ADDED
|
@@ -0,0 +1,177 @@
|
|
|
1
|
+
|
|
2
|
+
Apache License
|
|
3
|
+
Version 2.0, January 2004
|
|
4
|
+
http://www.apache.org/licenses/
|
|
5
|
+
|
|
6
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
7
|
+
|
|
8
|
+
1. Definitions.
|
|
9
|
+
|
|
10
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
11
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
12
|
+
|
|
13
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
14
|
+
the copyright owner that is granting the License.
|
|
15
|
+
|
|
16
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
17
|
+
other entities that control, are controlled by, or are under common
|
|
18
|
+
control with that entity. For the purposes of this definition,
|
|
19
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
20
|
+
direction or management of such entity, whether by contract or
|
|
21
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
22
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
23
|
+
|
|
24
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
25
|
+
exercising permissions granted by this License.
|
|
26
|
+
|
|
27
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
28
|
+
including but not limited to software source code, documentation
|
|
29
|
+
source, and configuration files.
|
|
30
|
+
|
|
31
|
+
"Object" form shall mean any form resulting from mechanical
|
|
32
|
+
transformation or translation of a Source form, including but
|
|
33
|
+
not limited to compiled object code, generated documentation,
|
|
34
|
+
and conversions to other media types.
|
|
35
|
+
|
|
36
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
37
|
+
Object form, made available under the License, as indicated by a
|
|
38
|
+
copyright notice that is included in or attached to the work
|
|
39
|
+
(an example is provided in the Appendix below).
|
|
40
|
+
|
|
41
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
42
|
+
form, that is based on (or derived from) the Work and for which the
|
|
43
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
44
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
45
|
+
of this License, Derivative Works shall not include works that remain
|
|
46
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
47
|
+
the Work and Derivative Works thereof.
|
|
48
|
+
|
|
49
|
+
"Contribution" shall mean any work of authorship, including
|
|
50
|
+
the original version of the Work and any modifications or additions
|
|
51
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
52
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
53
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
54
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
55
|
+
means any form of electronic, verbal, or written communication sent
|
|
56
|
+
to the Licensor or its representatives, including but not limited to
|
|
57
|
+
communication on electronic mailing lists, source code control systems,
|
|
58
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
59
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
60
|
+
excluding communication that is conspicuously marked or otherwise
|
|
61
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
62
|
+
|
|
63
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
64
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
65
|
+
subsequently incorporated within the Work.
|
|
66
|
+
|
|
67
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
68
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
69
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
70
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
71
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
72
|
+
Work and such Derivative Works in Source or Object form.
|
|
73
|
+
|
|
74
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
75
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
76
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
77
|
+
(except as stated in this section) patent license to make, have made,
|
|
78
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
79
|
+
where such license applies only to those patent claims licensable
|
|
80
|
+
by such Contributor that are necessarily infringed by their
|
|
81
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
82
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
83
|
+
institute patent litigation against any entity (including a
|
|
84
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
85
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
86
|
+
or contributory patent infringement, then any patent licenses
|
|
87
|
+
granted to You under this License for that Work shall terminate
|
|
88
|
+
as of the date such litigation is filed.
|
|
89
|
+
|
|
90
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
91
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
92
|
+
modifications, and in Source or Object form, provided that You
|
|
93
|
+
meet the following conditions:
|
|
94
|
+
|
|
95
|
+
(a) You must give any other recipients of the Work or
|
|
96
|
+
Derivative Works a copy of this License; and
|
|
97
|
+
|
|
98
|
+
(b) You must cause any modified files to carry prominent notices
|
|
99
|
+
stating that You changed the files; and
|
|
100
|
+
|
|
101
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
102
|
+
that You distribute, all copyright, patent, trademark, and
|
|
103
|
+
attribution notices from the Source form of the Work,
|
|
104
|
+
excluding those notices that do not pertain to any part of
|
|
105
|
+
the Derivative Works; and
|
|
106
|
+
|
|
107
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
108
|
+
distribution, then any Derivative Works that You distribute must
|
|
109
|
+
include a readable copy of the attribution notices contained
|
|
110
|
+
within such NOTICE file, excluding those notices that do not
|
|
111
|
+
pertain to any part of the Derivative Works, in at least one
|
|
112
|
+
of the following places: within a NOTICE text file distributed
|
|
113
|
+
as part of the Derivative Works; within the Source form or
|
|
114
|
+
documentation, if provided along with the Derivative Works; or,
|
|
115
|
+
within a display generated by the Derivative Works, if and
|
|
116
|
+
wherever such third-party notices normally appear. The contents
|
|
117
|
+
of the NOTICE file are for informational purposes only and
|
|
118
|
+
do not modify the License. You may add Your own attribution
|
|
119
|
+
notices within Derivative Works that You distribute, alongside
|
|
120
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
121
|
+
that such additional attribution notices cannot be construed
|
|
122
|
+
as modifying the License.
|
|
123
|
+
|
|
124
|
+
You may add Your own copyright statement to Your modifications and
|
|
125
|
+
may provide additional or different license terms and conditions
|
|
126
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
127
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
128
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
129
|
+
the conditions stated in this License.
|
|
130
|
+
|
|
131
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
132
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
133
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
134
|
+
this License, without any additional terms or conditions.
|
|
135
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
136
|
+
the terms of any separate license agreement you may have executed
|
|
137
|
+
with Licensor regarding such Contributions.
|
|
138
|
+
|
|
139
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
140
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
141
|
+
except as required for reasonable and customary use in describing the
|
|
142
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
143
|
+
|
|
144
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
145
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
146
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
147
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
148
|
+
implied, including, without limitation, any warranties or conditions
|
|
149
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
150
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
151
|
+
appropriateness of using or redistributing the Work and assume any
|
|
152
|
+
risks associated with Your exercise of permissions under this License.
|
|
153
|
+
|
|
154
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
155
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
156
|
+
unless required by applicable law (such as deliberate and grossly
|
|
157
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
158
|
+
liable to You for damages, including any direct, indirect, special,
|
|
159
|
+
incidental, or consequential damages of any character arising as a
|
|
160
|
+
result of this License or out of the use or inability to use the
|
|
161
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
162
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
163
|
+
other commercial damages or losses), even if such Contributor
|
|
164
|
+
has been advised of the possibility of such damages.
|
|
165
|
+
|
|
166
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
167
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
168
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
169
|
+
or other liability obligations and/or rights consistent with this
|
|
170
|
+
License. However, in accepting such obligations, You may act only
|
|
171
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
172
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
173
|
+
defend, and hold each Contributor harmless for any liability
|
|
174
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
175
|
+
of your accepting any such warranty or additional liability.
|
|
176
|
+
|
|
177
|
+
END OF TERMS AND CONDITIONS
|
data/README.md
ADDED
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
# R10k/Puppetfile Dependency Resolver
|
|
2
|
+
|
|
3
|
+
This tool takes a minimal `Puppetfile.src` as input and recursively resolves all
|
|
4
|
+
the dependencies into a final `Puppetfile` that r10k or other tools can use to
|
|
5
|
+
deploy your control repository.
|
|
6
|
+
|
|
7
|
+
This means that instead of listing every single Puppet module to be installed,
|
|
8
|
+
you can instead just list the modules that you actually care about and will use
|
|
9
|
+
directly. This has a few major benefits:
|
|
10
|
+
|
|
11
|
+
- It keeps your environment clean by automatically uninstalling modules that are
|
|
12
|
+
no longer needed to match dependency requirements. It's far easier to track a
|
|
13
|
+
short list of actively used modules and keep it current.
|
|
14
|
+
- It clarifies _intent_ so that you or future maintainers know which modules are
|
|
15
|
+
expected to be actively used. Combined with [Dropsonde](https://dev.to/puppet/cleaning-up-unused-modules-with-dropsonde-44a5),
|
|
16
|
+
to create module usage reports, it becomes much easier to clean up stale
|
|
17
|
+
modules from your environment.
|
|
18
|
+
- It provides a _contract_ for your Puppet profile authors so they can know and
|
|
19
|
+
trust which modules will be installed, even after future cleanups.
|
|
20
|
+
|
|
21
|
+
***Note:** if this [pull request](https://github.com/puppetlabs/r10k/pull/1314) is
|
|
22
|
+
merged and released, then it will obsolete this tool by incorporating the
|
|
23
|
+
functionality into r10k itself.*
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
## Installation
|
|
27
|
+
|
|
28
|
+
This is distributed as a Ruby gem. Simply install it with
|
|
29
|
+
|
|
30
|
+
```
|
|
31
|
+
gem install r10k-resolve
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
## Workflow
|
|
36
|
+
|
|
37
|
+
1. Write `Puppetfile.src` that describes only the modules you intend to use.
|
|
38
|
+
1. Run `r10k-resolve` from the same directory to generate the `Puppetfile` with
|
|
39
|
+
all dependencies resolved.
|
|
40
|
+
- You can also pass `--source` and `--output` arguments if you'd rather.
|
|
41
|
+
1. Review the generated `Puppetfile` for quality and security purposes. This is
|
|
42
|
+
optional, but highly recommended.
|
|
43
|
+
1. Commit the `Puppetfile` and deploy your control repository, as fitting your
|
|
44
|
+
standard workflow.
|
|
45
|
+
|
|
46
|
+
### Example `Puppetfile.src`
|
|
47
|
+
|
|
48
|
+
```ruby
|
|
49
|
+
mod 'dellemc-powerstore', '0.8.1'
|
|
50
|
+
mod 'puppetlabs-mysql', '13.1.0'
|
|
51
|
+
mod 'puppet-php', '8.1.1'
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
### Example generated `Puppetfile`
|
|
55
|
+
|
|
56
|
+
```ruby
|
|
57
|
+
mod 'dellemc-powerstore', '0.8.1'
|
|
58
|
+
mod 'puppetlabs-mysql', '13.1.0'
|
|
59
|
+
mod 'puppet-php', '8.1.1'
|
|
60
|
+
|
|
61
|
+
####### resolved dependencies #######
|
|
62
|
+
mod 'puppet-format', '1.0.0'
|
|
63
|
+
mod 'puppetlabs-stdlib', '8.5.0'
|
|
64
|
+
mod 'puppetlabs-apt', '8.5.0'
|
|
65
|
+
mod 'puppetlabs-inifile', '5.4.0'
|
|
66
|
+
mod 'puppet-zypprepo', '4.0.1'
|
|
67
|
+
mod 'puppet-archive', '6.1.0'
|
|
68
|
+
mod 'puppetlabs-concat', '7.3.0'
|
|
69
|
+
|
|
70
|
+
# Generated with r10k-resolve version 0.0.1
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
## Limitations
|
|
74
|
+
|
|
75
|
+
Note that all dependencies will be satisfied from the Forge, no matter what
|
|
76
|
+
the original source was. If you need a module version checked out from source
|
|
77
|
+
control, you'll either need to add that to the source `Puppetfile.src` or update
|
|
78
|
+
the generated `Puppetfile` to reflect this.
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
## Disclaimer
|
|
82
|
+
|
|
83
|
+
This is not yet rigorously tested. Please validate the generated output and make
|
|
84
|
+
sure it looks reasonable.
|
data/bin/r10k-resolve
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
#! /usr/bin/env ruby
|
|
2
|
+
|
|
3
|
+
require 'r10k-resolve'
|
|
4
|
+
require 'optparse'
|
|
5
|
+
require 'logger'
|
|
6
|
+
|
|
7
|
+
logger = Logger.new(STDOUT)
|
|
8
|
+
logger.level = Logger::WARN
|
|
9
|
+
logger.formatter = proc { |sev, dt, prog, msg|
|
|
10
|
+
"#{sev} #{msg}\n"
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
options = {
|
|
14
|
+
:source => 'Puppetfile.src',
|
|
15
|
+
:force => false,
|
|
16
|
+
:dryrun => false,
|
|
17
|
+
:logger => logger,
|
|
18
|
+
}
|
|
19
|
+
OptionParser.new do |opts|
|
|
20
|
+
Version = R10kResolve::VERSION
|
|
21
|
+
opts.banner = "Usage: r10k-resolve [options]"
|
|
22
|
+
|
|
23
|
+
opts.on("-s", "--source [FILE]", "Pass the name of a source file (Puppetfile.src)") do |v|
|
|
24
|
+
options[:source] = v
|
|
25
|
+
end
|
|
26
|
+
opts.on("-o", "--output [FILE]", "Pass the name of an output file (Puppetfile)") do |v|
|
|
27
|
+
options[:output] = v
|
|
28
|
+
end
|
|
29
|
+
opts.on("-f", "--[no-]force", "Overwrite an existing output file") do |v|
|
|
30
|
+
options[:force] = v
|
|
31
|
+
end
|
|
32
|
+
opts.on("-d", "--[no-]dry-run", "Print output to the terminal instead of a file") do |v|
|
|
33
|
+
options[:dryrun] = v
|
|
34
|
+
end
|
|
35
|
+
opts.on("-v", "--[no-]verbose", "Display debugging output") do |v|
|
|
36
|
+
logger.level = Logger::DEBUG
|
|
37
|
+
end
|
|
38
|
+
end.parse!
|
|
39
|
+
|
|
40
|
+
if options[:dryrun]
|
|
41
|
+
logger.info("Dry run selected: displaying output instead of saving to file.")
|
|
42
|
+
logger.info("--------------------------------------------------------------")
|
|
43
|
+
options[:output] = $stdout.dup
|
|
44
|
+
else
|
|
45
|
+
options[:output] ||= File.basename(options[:source], ".*")
|
|
46
|
+
|
|
47
|
+
unless options[:force]
|
|
48
|
+
if File.exist?(options[:output])
|
|
49
|
+
logger.error("Pass --force to overwrite existing file: #{options[:output]}")
|
|
50
|
+
exit(1)
|
|
51
|
+
end
|
|
52
|
+
end
|
|
53
|
+
end
|
|
54
|
+
|
|
55
|
+
R10kResolve.new(options).resolve
|
data/lib/r10k-resolve.rb
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
require 'r10k-resolve/version'
|
|
2
|
+
require "puppetfile-resolver"
|
|
3
|
+
require "puppetfile-resolver/puppetfile/parser/r10k_eval"
|
|
4
|
+
|
|
5
|
+
class R10kResolve
|
|
6
|
+
attr_accessor :source, :output, :force, :dryrun, :logger
|
|
7
|
+
|
|
8
|
+
def initialize(options = {})
|
|
9
|
+
[:source, :output, :force, :dryrun, :logger].each do |key|
|
|
10
|
+
send("#{key}=", options[key])
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
@output = File.open(@output, 'w+') if @output.is_a? String
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
def resolve
|
|
17
|
+
content = File.read(@source)
|
|
18
|
+
puppetfile = PuppetfileResolver::Puppetfile::Parser::R10KEval.parse(content)
|
|
19
|
+
|
|
20
|
+
# Make sure the Puppetfile is valid
|
|
21
|
+
unless puppetfile.valid?
|
|
22
|
+
logger.error("Puppetfile source is not valid")
|
|
23
|
+
puppetfile.validation_errors.each { |err| logger.error(err) }
|
|
24
|
+
return false
|
|
25
|
+
end
|
|
26
|
+
|
|
27
|
+
resolver = PuppetfileResolver::Resolver.new(puppetfile, nil)
|
|
28
|
+
result = resolver.resolve(strict_mode: true)
|
|
29
|
+
|
|
30
|
+
# Output resolution validation information
|
|
31
|
+
result.validation_errors.each { |err| logger.info(err) }
|
|
32
|
+
|
|
33
|
+
logger.info('Generating Puppetfile...')
|
|
34
|
+
|
|
35
|
+
# copy over the existing Puppetfile, then add resolved dependencies below
|
|
36
|
+
@output.write(puppetfile.content)
|
|
37
|
+
@output.write("\n####### resolved dependencies #######\n")
|
|
38
|
+
|
|
39
|
+
result.dependency_graph.each do |dep|
|
|
40
|
+
# ignore the original modules, they're already in the output
|
|
41
|
+
next if puppetfile.modules.find { |mod| mod.name == dep.name }
|
|
42
|
+
|
|
43
|
+
mod = dep.payload
|
|
44
|
+
next unless mod.is_a?(PuppetfileResolver::Models::ModuleSpecification)
|
|
45
|
+
|
|
46
|
+
@output.write("mod '#{dep.payload.owner}-#{dep.payload.name}', '#{dep.payload.version}'\n")
|
|
47
|
+
end
|
|
48
|
+
|
|
49
|
+
@output.write("\n# Generated with r10k-resolve version #{R10kResolve::VERSION}\n\n")
|
|
50
|
+
|
|
51
|
+
logger.warn(
|
|
52
|
+
"Please inspect the output to ensure you know what you are deploying in your infrastructure."
|
|
53
|
+
)
|
|
54
|
+
end
|
|
55
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: r10k-resolve
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Ben Ford
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2023-01-04 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: puppetfile-resolver
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - "~>"
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: 0.5.0
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - "~>"
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: 0.5.0
|
|
27
|
+
description: |2
|
|
28
|
+
This will take a Puppetfile.src in which you've described only the Puppet modules
|
|
29
|
+
you actually care about and recursively resolve all of their dependencies into
|
|
30
|
+
a complete Puppetfile ready for use by r10k.
|
|
31
|
+
email: binford2k@gmail.com
|
|
32
|
+
executables:
|
|
33
|
+
- r10k-resolve
|
|
34
|
+
extensions: []
|
|
35
|
+
extra_rdoc_files: []
|
|
36
|
+
files:
|
|
37
|
+
- LICENSE
|
|
38
|
+
- README.md
|
|
39
|
+
- bin/r10k-resolve
|
|
40
|
+
- lib/r10k-resolve.rb
|
|
41
|
+
- lib/r10k-resolve/version.rb
|
|
42
|
+
homepage: https://github.com/binford2k/r10k-resolve/
|
|
43
|
+
licenses:
|
|
44
|
+
- Apache-2.0
|
|
45
|
+
metadata: {}
|
|
46
|
+
post_install_message:
|
|
47
|
+
rdoc_options: []
|
|
48
|
+
require_paths:
|
|
49
|
+
- lib
|
|
50
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - ">="
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: '0'
|
|
55
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
56
|
+
requirements:
|
|
57
|
+
- - ">="
|
|
58
|
+
- !ruby/object:Gem::Version
|
|
59
|
+
version: '0'
|
|
60
|
+
requirements: []
|
|
61
|
+
rubygems_version: 3.3.7
|
|
62
|
+
signing_key:
|
|
63
|
+
specification_version: 4
|
|
64
|
+
summary: Simple tool to resolve minimal Puppetfile dependencies.
|
|
65
|
+
test_files: []
|