poise-hoist 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 17c2ff1e81f2fe651f4c3a048482985b8f57431c
4
+ data.tar.gz: df81c9f07b4009c074d02db0783140e286cbad44
5
+ SHA512:
6
+ metadata.gz: 5bc25b30445c863e1b3205b537bc49985c0a4216943df3930b9721527c2ca5659964aef54b6a2430baa07129a5bc55da111f5a6216a5d7eba81ec47e26e5ac15
7
+ data.tar.gz: f6d9e8490017afa7b2077e260e8a8bf46bba4509ad0394dcfd313a0cab9c51d17674d8f7017583289974ee7b0f477cf55570497f2461a025bca5297debcc79e1
data/.gitignore ADDED
@@ -0,0 +1,11 @@
1
+ Gemfile.lock
2
+ Berksfile.lock
3
+ test/gemfiles/*.lock
4
+ .kitchen/
5
+ .kitchen.local.yml
6
+ test/docker/
7
+ coverage/
8
+ pkg/
9
+ .yardoc/
10
+ doc/
11
+
data/.kitchen.yml ADDED
@@ -0,0 +1,10 @@
1
+ ---
2
+ #<% require 'poise_boiler' %>
3
+ <%= PoiseBoiler.kitchen(platforms: 'ubuntu-14.04') %>
4
+
5
+ provisioner:
6
+ name: poise_policyfile_zero
7
+ policyfile: test/integration/default_policy.rb
8
+
9
+ verifier:
10
+ name: inspec
data/.travis.yml ADDED
@@ -0,0 +1,26 @@
1
+ sudo: false
2
+ cache: bundler
3
+ language: ruby
4
+ rvm:
5
+ - '2.2'
6
+ before_install:
7
+ - if [[ $BUNDLE_GEMFILE == *master.gemfile ]]; then gem update --system; fi
8
+ - gem --version
9
+ - gem install bundler
10
+ - bundle --version
11
+ env:
12
+ global:
13
+ - secure: g0CJEgEqFbBAeNw4jian5FEWgtm0riOpaKr/MPBky0JpeWUPeRmROGq2qFDrHIuytiHBUd4e/Fh0PNAniSKqUJPne2xQpMNMwWz3jgAkiR02f0hIdbHuO6WIZ/eIZtCaOsz3uyP9FroubnAb5NjU0FK4vat1lhd6IE+ZoGUznV/JLstf6HEo4Qvb1KDG2uSGKJ9rY+IGUYaVLAXqalk/z7lwRx8r6vZaqY3n9qWic1QP1eVfsfMoVw/SZObywcaB30dLgR3ZNIXZCYMITo4YdKisIax6ZQJTrgZyrxfAeOOwEV/13uTwFfPpQoHKoiJ2xIEAwkwbnSFUhpwbg6vSs9ncW3H9tQScgYKW1TyibNtP8CGGOiTJCZSLbVzCj+4YNos2MSs/2Aju5OVzf+U+zMnOnBMur4WajrEZCM/3wpHdUaHKHzxsCjRlRtPOBtYCXMMf/NSkvQhgqJ5kiLRyastqNEK64D1PHMCAm0gOppgX/KASYunhX8FTnUUxjrnI8LL1sSSQ515dw/zte5cyMzgiKHxhDWXi1sxv6ZsRO46/R63I0EEQ8OdUsXilftf4UcdSkIC28VxEeZzLy3eJp578NR/wCU6ecb6HY5O6sjV6hRo8q0LBsi4Db9vOgwegJEEiBqgDwaQcW7hwC452MZaOQk9Oo8yycs/RnmrShFo=
14
+ bundler_args: "--binstubs=$PWD/bin --jobs 3 --retry 3"
15
+ script:
16
+ - "./bin/rake travis"
17
+ gemfile:
18
+ - test/gemfiles/chef-12.gemfile
19
+ - test/gemfiles/chef-12.2.gemfile
20
+ - test/gemfiles/chef-12.3.gemfile
21
+ - test/gemfiles/chef-12.4.gemfile
22
+ - test/gemfiles/chef-12.5.gemfile
23
+ - test/gemfiles/chef-12.6.gemfile
24
+ - test/gemfiles/chef-12.7.gemfile
25
+ - test/gemfiles/chef-12.8.gemfile
26
+ - test/gemfiles/master.gemfile
data/.yardopts ADDED
@@ -0,0 +1,5 @@
1
+ --plugin classmethods
2
+ --embed-mixin ClassMethods
3
+ --hide-api private
4
+ --markup markdown
5
+ --hide-void-return
data/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ # Poise-Hoist Changelog
2
+
3
+ ## v1.0.0
4
+
5
+ * Initial release!
data/Gemfile ADDED
@@ -0,0 +1,32 @@
1
+ #
2
+ # Copyright 2016, Noah Kantrowitz
3
+ #
4
+ # Licensed under the Apache License, Version 2.0 (the "License");
5
+ # you may not use this file except in compliance with the License.
6
+ # You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+ #
16
+
17
+ source 'https://rubygems.org/'
18
+
19
+ gemspec path: File.expand_path('..', __FILE__)
20
+
21
+ def dev_gem(name, path: File.join('..', name), github: nil)
22
+ path = File.expand_path(File.join('..', path), __FILE__)
23
+ if File.exist?(path)
24
+ gem name, path: path
25
+ elsif github
26
+ gem name, github: github
27
+ end
28
+ end
29
+
30
+ dev_gem 'halite'
31
+ dev_gem 'poise-boiler', github: 'poise/poise-boiler'
32
+ dev_gem 'poise-profiler'
data/LICENSE ADDED
@@ -0,0 +1,202 @@
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
178
+
179
+ APPENDIX: How to apply the Apache License to your work.
180
+
181
+ To apply the Apache License to your work, attach the following
182
+ boilerplate notice, with the fields enclosed by brackets "[]"
183
+ replaced with your own identifying information. (Don't include
184
+ the brackets!) The text should be enclosed in the appropriate
185
+ comment syntax for the file format. We also recommend that a
186
+ file or class name and description of purpose be included on the
187
+ same "printed page" as the copyright notice for easier
188
+ identification within third-party archives.
189
+
190
+ Copyright [yyyy] [name of copyright owner]
191
+
192
+ Licensed under the Apache License, Version 2.0 (the "License");
193
+ you may not use this file except in compliance with the License.
194
+ You may obtain a copy of the License at
195
+
196
+ http://www.apache.org/licenses/LICENSE-2.0
197
+
198
+ Unless required by applicable law or agreed to in writing, software
199
+ distributed under the License is distributed on an "AS IS" BASIS,
200
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
201
+ See the License for the specific language governing permissions and
202
+ limitations under the License.
data/README.md ADDED
@@ -0,0 +1,64 @@
1
+ # Poise-Hoist
2
+
3
+ [![Build Status](https://img.shields.io/travis/poise/poise-hoist.svg)](https://travis-ci.org/poise/poise-hoist)
4
+ [![Gem Version](https://img.shields.io/gem/v/poise-hoist.svg)](https://rubygems.org/gems/poise-hoist)
5
+ [![Cookbook Version](https://img.shields.io/cookbook/v/poise-hoist.svg)](https://supermarket.chef.io/cookbooks/poise-hoist)
6
+ [![Coverage](https://img.shields.io/codecov/c/github/poise/poise-hoist.svg)](https://codecov.io/github/poise/poise-hoist)
7
+ [![Gemnasium](https://img.shields.io/gemnasium/poise/poise-hoist.svg)](https://gemnasium.com/poise/poise-hoist)
8
+ [![License](https://img.shields.io/badge/license-Apache_2-blue.svg)](https://www.apache.org/licenses/LICENSE-2.0)
9
+
10
+ A cookbook to help automate "attribute hoisting" when using Chef with Policyfiles.
11
+
12
+ Attribute hoisting is a way to store per-policy-group attributes in a policy to
13
+ allow similar settings to environment-level attributes in a pre-Policyfile
14
+ workflow. Just put the desired attributes under a top-level key matching the
15
+ name of the policy group and add `poise-hoist` either to your run list or to
16
+ your cookbook dependencies.
17
+
18
+ ## Quick Start
19
+
20
+ In your Policyfile:
21
+
22
+ ```ruby
23
+ name 'myapp'
24
+
25
+ run_list 'poise-hoist', 'myapp'
26
+
27
+ default['staging']['myapp']['debug_mode'] = true
28
+ default['prod']['myapp']['debug_mode'] = false
29
+ ```
30
+
31
+ ## Requirements
32
+
33
+ Chef 12.2 or newer is required.
34
+
35
+ ## Use With Test Kitchen
36
+
37
+ When testing policies with the `policyfile_zero` provisioner plugin, the policy
38
+ group will always be `local`.
39
+
40
+ ```ruby
41
+ default['local']['myapp']['debug_mode'] = true
42
+ ```
43
+
44
+ ## Sponsors
45
+
46
+ Development sponsored by [Bloomberg](http://www.bloomberg.com/company/technology/).
47
+
48
+ The Poise test server infrastructure is generously sponsored by [Rackspace](https://rackspace.com/). Thanks Rackspace!
49
+
50
+ ## License
51
+
52
+ Copyright 2016, Noah Kantrowitz
53
+
54
+ Licensed under the Apache License, Version 2.0 (the "License");
55
+ you may not use this file except in compliance with the License.
56
+ You may obtain a copy of the License at
57
+
58
+ http://www.apache.org/licenses/LICENSE-2.0
59
+
60
+ Unless required by applicable law or agreed to in writing, software
61
+ distributed under the License is distributed on an "AS IS" BASIS,
62
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
63
+ See the License for the specific language governing permissions and
64
+ limitations under the License.
data/Rakefile ADDED
@@ -0,0 +1,17 @@
1
+ #
2
+ # Copyright 2016, Noah Kantrowitz
3
+ #
4
+ # Licensed under the Apache License, Version 2.0 (the "License");
5
+ # you may not use this file except in compliance with the License.
6
+ # You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+ #
16
+
17
+ require 'poise_boiler/rakefile'
@@ -0,0 +1,18 @@
1
+ #
2
+ # Copyright 2016, Noah Kantrowitz
3
+ #
4
+ # Licensed under the Apache License, Version 2.0 (the "License");
5
+ # you may not use this file except in compliance with the License.
6
+ # You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+ #
16
+
17
+ # If we weren't able to run it during library load, do it now.
18
+ PoiseHoist.hoist!(node) unless defined?(Chef.node)
@@ -0,0 +1,17 @@
1
+ #
2
+ # Copyright 2016, Noah Kantrowitz
3
+ #
4
+ # Licensed under the Apache License, Version 2.0 (the "License");
5
+ # you may not use this file except in compliance with the License.
6
+ # You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+ #
16
+
17
+ # This space left intentionally blank.
@@ -0,0 +1,37 @@
1
+ #
2
+ # Copyright 2016, Noah Kantrowitz
3
+ #
4
+ # Licensed under the Apache License, Version 2.0 (the "License");
5
+ # you may not use this file except in compliance with the License.
6
+ # You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+ #
16
+
17
+ require 'chef/mixin/deep_merge'
18
+
19
+
20
+ # Helpers to hoist group-level attributes from a Policyfile.
21
+ #
22
+ # @since 1.0.0
23
+ module PoiseHoist
24
+ autoload :VERSION, 'poise_hoist/version'
25
+
26
+ def self.hoist!(node)
27
+ # Do nothing if we aren't using policies.
28
+ policy_group = (defined?(node.policy_group) && node.policy_group) || \
29
+ Chef::Config[:policy_group] || \
30
+ (Chef::Config[:deployment_group] && Chef::Config[:deployment_group].split(/-/).last)
31
+ return unless policy_group
32
+ Chef::Log.debug("Running attribute Hoist for group #{policy_group}")
33
+ # Hoist away, mateys!
34
+ Chef::Mixin::DeepMerge.hash_only_merge!(node.role_default, node.role_default[policy_group]) if node.role_default.include?(policy_group)
35
+ Chef::Mixin::DeepMerge.hash_only_merge!(node.role_override, node.role_override[policy_group]) if node.role_override.include?(policy_group)
36
+ end
37
+ end
@@ -0,0 +1,19 @@
1
+ #
2
+ # Copyright 2016, Noah Kantrowitz
3
+ #
4
+ # Licensed under the Apache License, Version 2.0 (the "License");
5
+ # you may not use this file except in compliance with the License.
6
+ # You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+ #
16
+
17
+ require 'poise_hoist'
18
+ # Try to hoist as early as possible.
19
+ PoiseHoist.hoist!(Chef.node) if defined?(Chef.node)
@@ -0,0 +1,21 @@
1
+ #
2
+ # Copyright 2016, Noah Kantrowitz
3
+ #
4
+ # Licensed under the Apache License, Version 2.0 (the "License");
5
+ # you may not use this file except in compliance with the License.
6
+ # You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+ #
16
+
17
+
18
+ module PoiseHoist
19
+ # Version for the poise-hoist gem.
20
+ VERSION = '1.0.0'
21
+ end
@@ -0,0 +1,41 @@
1
+ #
2
+ # Copyright 2016, Noah Kantrowitz
3
+ #
4
+ # Licensed under the Apache License, Version 2.0 (the "License");
5
+ # you may not use this file except in compliance with the License.
6
+ # You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+ #
16
+
17
+ lib = File.expand_path('../lib', __FILE__)
18
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
19
+ require 'poise_hoist/version'
20
+
21
+ Gem::Specification.new do |spec|
22
+ spec.name = 'poise-hoist'
23
+ spec.version = PoiseHoist::VERSION
24
+ spec.authors = ['Noah Kantrowitz']
25
+ spec.email = %w{noah@coderanger.net}
26
+ spec.description = 'Automatically hoist environment level-attributes from Policyfiles.'
27
+ spec.summary = spec.description
28
+ spec.homepage = 'https://github.com/poise/poise-hoist'
29
+ spec.license = 'Apache 2.0'
30
+
31
+ spec.files = `git ls-files`.split($/)
32
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
33
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
34
+ spec.require_paths = %w{lib}
35
+
36
+ spec.add_dependency 'halite', '~> 1.0'
37
+
38
+ spec.add_development_dependency 'chef-dk', '~> 0.1'
39
+ spec.add_development_dependency 'kitchen-inspec', '~> 0.12'
40
+ spec.add_development_dependency 'poise-boiler', '~> 1.8'
41
+ end
@@ -0,0 +1,19 @@
1
+ #
2
+ # Copyright 2016, Noah Kantrowitz
3
+ #
4
+ # Licensed under the Apache License, Version 2.0 (the "License");
5
+ # you may not use this file except in compliance with the License.
6
+ # You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+ #
16
+
17
+ default['hoist_test']['one'] = 1
18
+ default['hoist_test']['two'] = 2
19
+ default['hoist_test']['three'] = 3
@@ -0,0 +1,18 @@
1
+ #
2
+ # Copyright 2016, Noah Kantrowitz
3
+ #
4
+ # Licensed under the Apache License, Version 2.0 (the "License");
5
+ # you may not use this file except in compliance with the License.
6
+ # You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+ #
16
+
17
+ name 'poise-hoist_test'
18
+ depends 'poise-hoist'
@@ -0,0 +1,19 @@
1
+ #
2
+ # Copyright 2016, Noah Kantrowitz
3
+ #
4
+ # Licensed under the Apache License, Version 2.0 (the "License");
5
+ # you may not use this file except in compliance with the License.
6
+ # You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+ #
16
+
17
+ file '/hoist_test' do
18
+ content node['hoist_test'].to_hash.to_json
19
+ end
@@ -0,0 +1,20 @@
1
+ #
2
+ # Copyright 2016, Noah Kantrowitz
3
+ #
4
+ # Licensed under the Apache License, Version 2.0 (the "License");
5
+ # you may not use this file except in compliance with the License.
6
+ # You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+ #
16
+
17
+ eval_gemfile File.expand_path('../../../Gemfile', __FILE__)
18
+
19
+ gem 'chef', '~> 12.2.1'
20
+ gem 'chef-dk', '~> 0.10.0'
@@ -0,0 +1,20 @@
1
+ #
2
+ # Copyright 2016, Noah Kantrowitz
3
+ #
4
+ # Licensed under the Apache License, Version 2.0 (the "License");
5
+ # you may not use this file except in compliance with the License.
6
+ # You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+ #
16
+
17
+ eval_gemfile File.expand_path('../../../Gemfile', __FILE__)
18
+
19
+ gem 'chef', '~> 12.3.0'
20
+ gem 'chef-dk', '~> 0.10.0'
@@ -0,0 +1,20 @@
1
+ #
2
+ # Copyright 2016, Noah Kantrowitz
3
+ #
4
+ # Licensed under the Apache License, Version 2.0 (the "License");
5
+ # you may not use this file except in compliance with the License.
6
+ # You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+ #
16
+
17
+ eval_gemfile File.expand_path('../../../Gemfile', __FILE__)
18
+
19
+ gem 'chef', '~> 12.4.3'
20
+ gem 'chef-dk', '~> 0.10.0'
@@ -0,0 +1,20 @@
1
+ #
2
+ # Copyright 2016, Noah Kantrowitz
3
+ #
4
+ # Licensed under the Apache License, Version 2.0 (the "License");
5
+ # you may not use this file except in compliance with the License.
6
+ # You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+ #
16
+
17
+ eval_gemfile File.expand_path('../../../Gemfile', __FILE__)
18
+
19
+ gem 'chef', '~> 12.5.1'
20
+ gem 'chef-dk', '~> 0.10.0'
@@ -0,0 +1,20 @@
1
+ #
2
+ # Copyright 2016, Noah Kantrowitz
3
+ #
4
+ # Licensed under the Apache License, Version 2.0 (the "License");
5
+ # you may not use this file except in compliance with the License.
6
+ # You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+ #
16
+
17
+ eval_gemfile File.expand_path('../../../Gemfile', __FILE__)
18
+
19
+ gem 'chef', '~> 12.6.0'
20
+ gem 'chef-dk', '~> 0.10.0'
@@ -0,0 +1,20 @@
1
+ #
2
+ # Copyright 2016, Noah Kantrowitz
3
+ #
4
+ # Licensed under the Apache License, Version 2.0 (the "License");
5
+ # you may not use this file except in compliance with the License.
6
+ # You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+ #
16
+
17
+ eval_gemfile File.expand_path('../../../Gemfile', __FILE__)
18
+
19
+ gem 'chef', '~> 12.7.2'
20
+ gem 'chef-dk', '~> 0.11.0'
@@ -0,0 +1,20 @@
1
+ #
2
+ # Copyright 2016, Noah Kantrowitz
3
+ #
4
+ # Licensed under the Apache License, Version 2.0 (the "License");
5
+ # you may not use this file except in compliance with the License.
6
+ # You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+ #
16
+
17
+ eval_gemfile File.expand_path('../../../Gemfile', __FILE__)
18
+
19
+ gem 'chef', '~> 12.8.1'
20
+ gem 'chef-dk', '~> 0.12'
@@ -0,0 +1,20 @@
1
+ #
2
+ # Copyright 2016, Noah Kantrowitz
3
+ #
4
+ # Licensed under the Apache License, Version 2.0 (the "License");
5
+ # you may not use this file except in compliance with the License.
6
+ # You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+ #
16
+
17
+ eval_gemfile File.expand_path('../../../Gemfile', __FILE__)
18
+
19
+ gem 'chef', '~> 12.9'
20
+ gem 'chef-dk', '~> 0.12'
@@ -0,0 +1,23 @@
1
+ #
2
+ # Copyright 2016, Noah Kantrowitz
3
+ #
4
+ # Licensed under the Apache License, Version 2.0 (the "License");
5
+ # you may not use this file except in compliance with the License.
6
+ # You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+ #
16
+
17
+ eval_gemfile File.expand_path('../../../Gemfile', __FILE__)
18
+
19
+ gem 'chef', github: 'chef/chef'
20
+ gem 'chef-dk', github: 'chef/chef-dk'
21
+ gem 'halite', github: 'poise/halite'
22
+ # gem 'poise-boiler', github: 'poise/poise-boiler'
23
+ gem 'poise-profiler', github: 'poise/poise-profiler'
@@ -0,0 +1,19 @@
1
+ #
2
+ # Copyright 2016, Noah Kantrowitz
3
+ #
4
+ # Licensed under the Apache License, Version 2.0 (the "License");
5
+ # you may not use this file except in compliance with the License.
6
+ # You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+ #
16
+
17
+ describe file('/hoist_test') do
18
+ its(:content) { is_expected.to eq '{"one":11,"two":222,"three":3}' }
19
+ end
@@ -0,0 +1,24 @@
1
+ #
2
+ # Copyright 2016, Noah Kantrowitz
3
+ #
4
+ # Licensed under the Apache License, Version 2.0 (the "License");
5
+ # you may not use this file except in compliance with the License.
6
+ # You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+ #
16
+
17
+ name 'default'
18
+ run_list 'poise-profiler', 'poise-hoist_test'
19
+
20
+ default['other']['hoist_test']['one'] = 100
21
+ default['local']['hoist_test']['one'] = 11
22
+ override['hoist_test']['two'] = 22
23
+ override['other']['hoist_test']['two'] = 220
24
+ override['local']['hoist_test']['two'] = 222
@@ -0,0 +1,129 @@
1
+ #
2
+ # Copyright 2016, Noah Kantrowitz
3
+ #
4
+ # Licensed under the Apache License, Version 2.0 (the "License");
5
+ # you may not use this file except in compliance with the License.
6
+ # You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+ #
16
+
17
+ require 'spec_helper'
18
+
19
+
20
+ describe PoiseHoist do
21
+ let(:role_default_attributes) { {} }
22
+ let(:role_override_attributes) { {} }
23
+ let(:node) { chef_run.node }
24
+ subject do
25
+ # Apply our attributes
26
+ node.role_default.update(role_default_attributes)
27
+ node.role_override.update(role_override_attributes)
28
+ # Set a policy_group. Run this late so our node doesn't get created before
29
+ # all before blocks get a chance to run.
30
+ if defined?(node.policy_group)
31
+ node.policy_group = 'mygroup'
32
+ else
33
+ # Global side effect. ¯\_(ツ)_/¯
34
+ Chef::Config[:policy_group] = 'mygroup'
35
+ end
36
+ # Run the hoist.
37
+ PoiseHoist.hoist!(node)
38
+ # Use the attributes as the subject.
39
+ node.attributes
40
+ end
41
+ before do
42
+ # A whole bunch of attribute data as a starting point for each test.
43
+ role_default_attributes['baseline'] ||= {}
44
+ role_default_attributes['baseline']['one'] = 1
45
+ role_default_attributes['baseline']['two'] = 2
46
+ role_default_attributes['baseline']['deep'] ||= {}
47
+ role_default_attributes['baseline']['deep']['three'] = 3
48
+ role_default_attributes['baseline']['deep']['four'] = [4]
49
+ role_override_attributes['baseline'] ||= {}
50
+ role_override_attributes['baseline']['one'] = 11
51
+ role_override_attributes['top'] = 'hat'
52
+ end
53
+
54
+ context 'with no policy attributes' do
55
+ its(%w{baseline one}) { is_expected.to eq 11 }
56
+ its(%w{baseline two}) { is_expected.to eq 2 }
57
+ its(%w{baseline deep three}) { is_expected.to eq 3 }
58
+ its(%w{baseline deep four}) { is_expected.to eq [4] }
59
+ its(%w{top}) { is_expected.to eq 'hat' }
60
+ end # /context with no policy attributes
61
+
62
+ context 'with a single default policy attribute' do
63
+ before do
64
+ role_default_attributes['mygroup'] ||= {}
65
+ role_default_attributes['mygroup']['baseline'] ||= {}
66
+ role_default_attributes['mygroup']['baseline']['two'] = 22
67
+ end
68
+ its(%w{baseline one}) { is_expected.to eq 11 }
69
+ its(%w{baseline two}) { is_expected.to eq 22 }
70
+ its(%w{baseline deep three}) { is_expected.to eq 3 }
71
+ its(%w{baseline deep four}) { is_expected.to eq [4] }
72
+ its(%w{top}) { is_expected.to eq 'hat' }
73
+ end # /context with a single default policy attribute
74
+
75
+ context 'with multiple default policy attributes' do
76
+ before do
77
+ role_default_attributes['mygroup'] ||= {}
78
+ role_default_attributes['mygroup']['baseline'] ||= {}
79
+ role_default_attributes['mygroup']['baseline']['one'] = 111
80
+ role_default_attributes['mygroup']['baseline']['two'] = 22
81
+ role_default_attributes['mygroup']['baseline']['deep'] ||= {}
82
+ role_default_attributes['mygroup']['baseline']['deep']['three'] = 33
83
+ end
84
+ its(%w{baseline one}) { is_expected.to eq 11 }
85
+ its(%w{baseline two}) { is_expected.to eq 22 }
86
+ its(%w{baseline deep three}) { is_expected.to eq 33 }
87
+ its(%w{baseline deep four}) { is_expected.to eq [4] }
88
+ its(%w{top}) { is_expected.to eq 'hat' }
89
+ end # /context with multiple default policy attributes
90
+
91
+ context 'with an array default policy attribute' do
92
+ before do
93
+ role_default_attributes['mygroup'] ||= {}
94
+ role_default_attributes['mygroup']['baseline'] ||= {}
95
+ role_default_attributes['mygroup']['baseline']['deep'] ||= {}
96
+ role_default_attributes['mygroup']['baseline']['deep']['four'] = [44]
97
+ end
98
+ its(%w{baseline one}) { is_expected.to eq 11 }
99
+ its(%w{baseline two}) { is_expected.to eq 2 }
100
+ its(%w{baseline deep three}) { is_expected.to eq 3 }
101
+ its(%w{baseline deep four}) { is_expected.to eq [44] }
102
+ its(%w{top}) { is_expected.to eq 'hat' }
103
+ end # /context with an array default policy attribute
104
+
105
+ context 'with a single override policy attribute' do
106
+ before do
107
+ role_override_attributes['mygroup'] ||= {}
108
+ role_override_attributes['mygroup']['baseline'] ||= {}
109
+ role_override_attributes['mygroup']['baseline']['one'] = 111
110
+ end
111
+ its(%w{baseline one}) { is_expected.to eq 111 }
112
+ its(%w{baseline two}) { is_expected.to eq 2 }
113
+ its(%w{baseline deep three}) { is_expected.to eq 3 }
114
+ its(%w{baseline deep four}) { is_expected.to eq [4] }
115
+ its(%w{top}) { is_expected.to eq 'hat' }
116
+ end # /context with a single override policy attribute
117
+
118
+ context 'with a top-level override policy attribute' do
119
+ before do
120
+ role_override_attributes['mygroup'] ||= {}
121
+ role_override_attributes['mygroup']['top'] = 'dog'
122
+ end
123
+ its(%w{baseline one}) { is_expected.to eq 11 }
124
+ its(%w{baseline two}) { is_expected.to eq 2 }
125
+ its(%w{baseline deep three}) { is_expected.to eq 3 }
126
+ its(%w{baseline deep four}) { is_expected.to eq [4] }
127
+ its(%w{top}) { is_expected.to eq 'dog' }
128
+ end # /context with a top-level override policy attribute
129
+ end
@@ -0,0 +1,18 @@
1
+ #
2
+ # Copyright 2016, Noah Kantrowitz
3
+ #
4
+ # Licensed under the Apache License, Version 2.0 (the "License");
5
+ # you may not use this file except in compliance with the License.
6
+ # You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+ #
16
+
17
+ require 'poise_boiler/spec_helper'
18
+ require 'poise_hoist'
metadata ADDED
@@ -0,0 +1,152 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: poise-hoist
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Noah Kantrowitz
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2016-04-22 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: halite
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: chef-dk
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '0.1'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '0.1'
41
+ - !ruby/object:Gem::Dependency
42
+ name: kitchen-inspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '0.12'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '0.12'
55
+ - !ruby/object:Gem::Dependency
56
+ name: poise-boiler
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '1.8'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '1.8'
69
+ description: Automatically hoist environment level-attributes from Policyfiles.
70
+ email:
71
+ - noah@coderanger.net
72
+ executables: []
73
+ extensions: []
74
+ extra_rdoc_files: []
75
+ files:
76
+ - ".gitignore"
77
+ - ".kitchen.yml"
78
+ - ".travis.yml"
79
+ - ".yardopts"
80
+ - CHANGELOG.md
81
+ - Gemfile
82
+ - LICENSE
83
+ - README.md
84
+ - Rakefile
85
+ - chef/attributes/default.rb
86
+ - chef/recipes/default.rb
87
+ - lib/poise_hoist.rb
88
+ - lib/poise_hoist/cheftie.rb
89
+ - lib/poise_hoist/version.rb
90
+ - poise-hoist.gemspec
91
+ - test/cookbook/attributes/default.rb
92
+ - test/cookbook/metadata.rb
93
+ - test/cookbook/recipes/default.rb
94
+ - test/docker/docker.ca
95
+ - test/docker/docker.pem
96
+ - test/gemfiles/chef-12.2.gemfile
97
+ - test/gemfiles/chef-12.3.gemfile
98
+ - test/gemfiles/chef-12.4.gemfile
99
+ - test/gemfiles/chef-12.5.gemfile
100
+ - test/gemfiles/chef-12.6.gemfile
101
+ - test/gemfiles/chef-12.7.gemfile
102
+ - test/gemfiles/chef-12.8.gemfile
103
+ - test/gemfiles/chef-12.gemfile
104
+ - test/gemfiles/master.gemfile
105
+ - test/integration/default/default_spec.rb
106
+ - test/integration/default_policy.rb
107
+ - test/spec/poise_hoist_spec.rb
108
+ - test/spec/spec_helper.rb
109
+ homepage: https://github.com/poise/poise-hoist
110
+ licenses:
111
+ - Apache 2.0
112
+ metadata: {}
113
+ post_install_message:
114
+ rdoc_options: []
115
+ require_paths:
116
+ - lib
117
+ required_ruby_version: !ruby/object:Gem::Requirement
118
+ requirements:
119
+ - - ">="
120
+ - !ruby/object:Gem::Version
121
+ version: '0'
122
+ required_rubygems_version: !ruby/object:Gem::Requirement
123
+ requirements:
124
+ - - ">="
125
+ - !ruby/object:Gem::Version
126
+ version: '0'
127
+ requirements: []
128
+ rubyforge_project:
129
+ rubygems_version: 2.6.2
130
+ signing_key:
131
+ specification_version: 4
132
+ summary: Automatically hoist environment level-attributes from Policyfiles.
133
+ test_files:
134
+ - test/cookbook/attributes/default.rb
135
+ - test/cookbook/metadata.rb
136
+ - test/cookbook/recipes/default.rb
137
+ - test/docker/docker.ca
138
+ - test/docker/docker.pem
139
+ - test/gemfiles/chef-12.2.gemfile
140
+ - test/gemfiles/chef-12.3.gemfile
141
+ - test/gemfiles/chef-12.4.gemfile
142
+ - test/gemfiles/chef-12.5.gemfile
143
+ - test/gemfiles/chef-12.6.gemfile
144
+ - test/gemfiles/chef-12.7.gemfile
145
+ - test/gemfiles/chef-12.8.gemfile
146
+ - test/gemfiles/chef-12.gemfile
147
+ - test/gemfiles/master.gemfile
148
+ - test/integration/default/default_spec.rb
149
+ - test/integration/default_policy.rb
150
+ - test/spec/poise_hoist_spec.rb
151
+ - test/spec/spec_helper.rb
152
+ has_rdoc: