cookbook_generator 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/README.md +14 -0
- metadata +47 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 6001a298b0844dceb7031113bad6180e64b3a4aa4b1898925161388dd0fbb603
|
|
4
|
+
data.tar.gz: 27edc533145be40e44139d6b0c01ecefde04334186e85423d4ea738691670973
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 0cc7eec974a30221234cb17a09987ce8c5b012b5c111b92c434ea66e020ae72f7b451b0e1f472872fb2ed42f4373a5a258b821ee560cb02653b4afab996df7ff
|
|
7
|
+
data.tar.gz: 3c5386221740cffd0e828b4f872b4c0ccf164862701e52ea95e948962b6da877f15e0301d6dc9c9b6c638509a116620de894a6b13f39c9d89942fd9e6b4d83d9
|
data/README.md
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# cookbook_generator
|
|
2
|
+
|
|
3
|
+
## Summary
|
|
4
|
+
|
|
5
|
+
Placeholder Gem for Chef custom cookbook generators.
|
|
6
|
+
|
|
7
|
+
## Intention
|
|
8
|
+
|
|
9
|
+
This gem does not contain any functionality, but is intended
|
|
10
|
+
to be overridden by internally-served gems of the same name.
|
|
11
|
+
|
|
12
|
+
Just deploy your own generators as `cookbook_generator` on an
|
|
13
|
+
internal RubyGems repository and be safe of naming and versioning
|
|
14
|
+
conflicts as it will never hit a version 0.1.0 or higher.
|
metadata
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: cookbook_generator
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- tecRacer Opensource
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2020-11-26 00:00:00.000000000 Z
|
|
12
|
+
dependencies: []
|
|
13
|
+
description: No functionality
|
|
14
|
+
email:
|
|
15
|
+
- opensource@tecracer.de
|
|
16
|
+
executables: []
|
|
17
|
+
extensions: []
|
|
18
|
+
extra_rdoc_files: []
|
|
19
|
+
files:
|
|
20
|
+
- README.md
|
|
21
|
+
homepage: https://github.com/tecracer-chef/cookbook_generator
|
|
22
|
+
licenses:
|
|
23
|
+
- Apache-2.0
|
|
24
|
+
metadata: {}
|
|
25
|
+
post_install_message: "This is a placeholder for customer-specific Chef cookbook generators.\n\nIt
|
|
26
|
+
serves the purpose of allowing internal cookbook generators of\nthe same name to
|
|
27
|
+
keep implementation generic.\n\nIf you are seeing this message, you probably have
|
|
28
|
+
not deployed a \ncustomized generator into your internal RubyGems repository yet.\n"
|
|
29
|
+
rdoc_options: []
|
|
30
|
+
require_paths:
|
|
31
|
+
- lib
|
|
32
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
33
|
+
requirements:
|
|
34
|
+
- - ">="
|
|
35
|
+
- !ruby/object:Gem::Version
|
|
36
|
+
version: '2.0'
|
|
37
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
38
|
+
requirements:
|
|
39
|
+
- - ">="
|
|
40
|
+
- !ruby/object:Gem::Version
|
|
41
|
+
version: '0'
|
|
42
|
+
requirements: []
|
|
43
|
+
rubygems_version: 3.0.3
|
|
44
|
+
signing_key:
|
|
45
|
+
specification_version: 4
|
|
46
|
+
summary: Placeholder for customer-specific Chef cookbook generators
|
|
47
|
+
test_files: []
|