berkshelf 5.2.0 → 8.0.15
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/Gemfile +19 -47
- data/Rakefile +14 -4
- data/berkshelf.gemspec +61 -40
- data/bin/berks +2 -2
- data/lib/berkshelf/api-client.rb +1 -0
- data/lib/berkshelf/api_client/chef_server_connection.rb +29 -0
- data/lib/berkshelf/api_client/connection.rb +57 -0
- data/lib/berkshelf/api_client/errors.rb +10 -0
- data/lib/berkshelf/api_client/remote_cookbook.rb +56 -0
- data/lib/berkshelf/api_client/version.rb +5 -0
- data/lib/berkshelf/api_client.rb +24 -0
- data/lib/berkshelf/berksfile.rb +149 -122
- data/lib/berkshelf/cached_cookbook.rb +127 -24
- data/lib/berkshelf/chef_config_compat.rb +51 -0
- data/lib/berkshelf/chef_repo_universe.rb +47 -0
- data/lib/berkshelf/cli.rb +143 -174
- data/lib/berkshelf/commands/shelf.rb +20 -19
- data/lib/berkshelf/community_rest.rb +59 -94
- data/lib/berkshelf/config.rb +97 -127
- data/lib/berkshelf/cookbook_store.rb +7 -6
- data/lib/berkshelf/core_ext/file.rb +1 -1
- data/lib/berkshelf/core_ext/file_utils.rb +4 -4
- data/lib/berkshelf/core_ext.rb +1 -1
- data/lib/berkshelf/dependency.rb +25 -32
- data/lib/berkshelf/downloader.rb +66 -39
- data/lib/berkshelf/errors.rb +23 -17
- data/lib/berkshelf/file_syncer.rb +24 -47
- data/lib/berkshelf/formatters/human.rb +7 -5
- data/lib/berkshelf/formatters/json.rb +6 -6
- data/lib/berkshelf/installer.rb +120 -111
- data/lib/berkshelf/location.rb +14 -14
- data/lib/berkshelf/locations/base.rb +1 -1
- data/lib/berkshelf/locations/git.rb +16 -24
- data/lib/berkshelf/locations/github.rb +2 -2
- data/lib/berkshelf/locations/path.rb +2 -2
- data/lib/berkshelf/lockfile.rb +326 -328
- data/lib/berkshelf/logger.rb +64 -1
- data/lib/berkshelf/mixin/git.rb +6 -5
- data/lib/berkshelf/packager.rb +44 -10
- data/lib/berkshelf/resolver/graph.rb +1 -1
- data/lib/berkshelf/resolver.rb +4 -4
- data/lib/berkshelf/ridley_compat.rb +109 -0
- data/lib/berkshelf/shell.rb +2 -1
- data/lib/berkshelf/shell_out.rb +18 -0
- data/lib/berkshelf/source.rb +77 -33
- data/lib/berkshelf/source_uri.rb +4 -4
- data/lib/berkshelf/ssl_policies.rb +38 -0
- data/lib/berkshelf/thor.rb +1 -1
- data/lib/berkshelf/thor_ext/hash_with_indifferent_access.rb +1 -1
- data/lib/berkshelf/thor_ext.rb +1 -1
- data/lib/berkshelf/uploader.rb +106 -70
- data/lib/berkshelf/validator.rb +13 -5
- data/lib/berkshelf/version.rb +1 -1
- data/lib/berkshelf/visualizer.rb +16 -11
- data/lib/berkshelf.rb +106 -81
- data/spec/config/knife.rb +4 -4
- data/spec/data/trusted_certs/example.crt +22 -0
- data/spec/fixtures/Berksfile +3 -3
- data/spec/fixtures/complex-cookbook-path/cookbooks/app/metadata.rb +2 -0
- data/spec/fixtures/complex-cookbook-path/cookbooks/jenkins/metadata.rb +2 -0
- data/spec/fixtures/complex-cookbook-path/cookbooks/jenkins-config/metadata.rb +4 -0
- data/spec/fixtures/cookbook-path/jenkins-config/metadata.rb +3 -3
- data/spec/fixtures/cookbook-path-uploader/apt-2.3.6/metadata.rb +2 -0
- data/spec/fixtures/cookbook-path-uploader/build-essential-1.4.2/metadata.rb +2 -0
- data/spec/fixtures/cookbook-path-uploader/jenkins-2.0.3/metadata.rb +5 -0
- data/spec/fixtures/cookbook-path-uploader/jenkins-config-0.1.0/metadata.rb +4 -0
- data/spec/fixtures/cookbook-path-uploader/runit-1.5.8/metadata.rb +5 -0
- data/spec/fixtures/cookbook-path-uploader/yum-3.0.6/metadata.rb +2 -0
- data/spec/fixtures/cookbook-path-uploader/yum-epel-0.2.0/metadata.rb +3 -0
- data/spec/fixtures/cookbook-store/jenkins-2.0.3/metadata.rb +5 -5
- data/spec/fixtures/cookbook-store/jenkins-2.0.4/metadata.rb +4 -4
- data/spec/fixtures/cookbooks/example_cookbook/metadata.rb +3 -3
- data/spec/fixtures/cookbooks/example_cookbook-0.5.0/metadata.rb +3 -3
- data/spec/spec_helper.rb +56 -64
- data/spec/support/chef_api.rb +15 -16
- data/spec/support/chef_server.rb +71 -69
- data/spec/support/git.rb +59 -58
- data/spec/support/kitchen.rb +0 -14
- data/spec/support/matchers/file_system_matchers.rb +4 -5
- data/spec/support/matchers/filepath_matchers.rb +2 -2
- data/spec/support/path_helpers.rb +17 -17
- data/spec/support/shared_examples/formatter.rb +1 -1
- data/spec/tmp/berkshelf/cookbooks/fake-0.1.0/attributes/default.rb +0 -0
- data/spec/tmp/berkshelf/cookbooks/fake-0.1.0/files/default/file.h +0 -0
- data/spec/tmp/berkshelf/cookbooks/fake-0.1.0/metadata.rb +2 -0
- data/spec/tmp/berkshelf/cookbooks/fake-0.1.0/recipes/default.rb +0 -0
- data/spec/tmp/berkshelf/cookbooks/fake-0.1.0/templates/default/template.erb +0 -0
- data/spec/tmp/berkshelf/cookbooks/fake-0.2.0/attributes/default.rb +0 -0
- data/spec/tmp/berkshelf/cookbooks/fake-0.2.0/files/default/file.h +0 -0
- data/spec/tmp/berkshelf/cookbooks/fake-0.2.0/metadata.rb +2 -0
- data/spec/tmp/berkshelf/cookbooks/fake-0.2.0/recipes/default.rb +0 -0
- data/spec/tmp/berkshelf/cookbooks/fake-0.2.0/templates/default/template.erb +0 -0
- data/spec/tmp/berkshelf/cookbooks/fake-1.0.0/attributes/default.rb +0 -0
- data/spec/tmp/berkshelf/cookbooks/fake-1.0.0/files/default/file.h +0 -0
- data/spec/tmp/berkshelf/cookbooks/fake-1.0.0/metadata.rb +2 -0
- data/spec/tmp/berkshelf/cookbooks/fake-1.0.0/recipes/default.rb +0 -0
- data/spec/tmp/berkshelf/cookbooks/fake-1.0.0/templates/default/template.erb +0 -0
- data/spec/unit/berkshelf/berksfile_spec.rb +84 -105
- data/spec/unit/berkshelf/berkshelf/api_client/chef_server_connection_spec.rb +65 -0
- data/spec/unit/berkshelf/berkshelf/api_client/connection_spec.rb +157 -0
- data/spec/unit/berkshelf/berkshelf/api_client/remote_cookbook_spec.rb +23 -0
- data/spec/unit/berkshelf/berkshelf/api_client_spec.rb +9 -0
- data/spec/unit/berkshelf/cached_cookbook_spec.rb +45 -47
- data/spec/unit/berkshelf/chef_repo_universe_spec.rb +37 -0
- data/spec/unit/berkshelf/cli_spec.rb +7 -8
- data/spec/unit/berkshelf/community_rest_spec.rb +82 -90
- data/spec/unit/berkshelf/config_spec.rb +51 -22
- data/spec/unit/berkshelf/cookbook_store_spec.rb +41 -41
- data/spec/unit/berkshelf/core_ext/file_utils_spec.rb +7 -8
- data/spec/unit/berkshelf/core_ext/pathname_spec.rb +1 -1
- data/spec/unit/berkshelf/dependency_spec.rb +48 -48
- data/spec/unit/berkshelf/downloader_spec.rb +191 -34
- data/spec/unit/berkshelf/errors_spec.rb +3 -3
- data/spec/unit/berkshelf/file_syncer_spec.rb +87 -87
- data/spec/unit/berkshelf/formatters/base_spec.rb +23 -23
- data/spec/unit/berkshelf/formatters/human_spec.rb +2 -2
- data/spec/unit/berkshelf/formatters/json_spec.rb +2 -2
- data/spec/unit/berkshelf/formatters/null_spec.rb +3 -3
- data/spec/unit/berkshelf/installer_spec.rb +8 -8
- data/spec/unit/berkshelf/location_spec.rb +11 -11
- data/spec/unit/berkshelf/locations/base_spec.rb +35 -36
- data/spec/unit/berkshelf/locations/git_spec.rb +90 -93
- data/spec/unit/berkshelf/locations/path_spec.rb +40 -41
- data/spec/unit/berkshelf/lockfile_parser_spec.rb +71 -71
- data/spec/unit/berkshelf/lockfile_spec.rb +205 -211
- data/spec/unit/berkshelf/logger_spec.rb +3 -3
- data/spec/unit/berkshelf/mixin/logging_spec.rb +5 -5
- data/spec/unit/berkshelf/packager_spec.rb +2 -2
- data/spec/unit/berkshelf/resolver/graph_spec.rb +10 -8
- data/spec/unit/berkshelf/resolver_spec.rb +17 -17
- data/spec/unit/berkshelf/ridley_compat_spec.rb +16 -0
- data/spec/unit/berkshelf/shell_spec.rb +34 -34
- data/spec/unit/berkshelf/source_spec.rb +186 -20
- data/spec/unit/berkshelf/source_uri_spec.rb +1 -1
- data/spec/unit/berkshelf/ssl_policies_spec.rb +86 -0
- data/spec/unit/berkshelf/uploader_spec.rb +146 -64
- data/spec/unit/berkshelf/validator_spec.rb +23 -16
- data/spec/unit/berkshelf/visualizer_spec.rb +24 -15
- data/spec/unit/berkshelf_spec.rb +18 -18
- metadata +138 -289
- data/.gitignore +0 -29
- data/.travis.yml +0 -64
- data/CHANGELOG.legacy.md +0 -307
- data/CHANGELOG.md +0 -1358
- data/CONTRIBUTING.md +0 -64
- data/Gemfile.lock +0 -399
- data/Guardfile +0 -23
- data/PLUGINS.md +0 -25
- data/README.md +0 -70
- data/Thorfile +0 -61
- data/appveyor.yml +0 -31
- data/docs/berkshelf_for_newcomers.md +0 -65
- data/features/berksfile.feature +0 -46
- data/features/commands/apply.feature +0 -41
- data/features/commands/contingent.feature +0 -48
- data/features/commands/cookbook.feature +0 -35
- data/features/commands/info.feature +0 -99
- data/features/commands/init.feature +0 -27
- data/features/commands/install.feature +0 -636
- data/features/commands/list.feature +0 -78
- data/features/commands/outdated.feature +0 -130
- data/features/commands/package.feature +0 -17
- data/features/commands/search.feature +0 -17
- data/features/commands/shelf/list.feature +0 -32
- data/features/commands/shelf/show.feature +0 -143
- data/features/commands/shelf/uninstall.feature +0 -96
- data/features/commands/show.feature +0 -83
- data/features/commands/update.feature +0 -142
- data/features/commands/upload.feature +0 -426
- data/features/commands/vendor.feature +0 -111
- data/features/commands/verify.feature +0 -29
- data/features/commands/viz.feature +0 -66
- data/features/community_site.feature +0 -37
- data/features/config.feature +0 -111
- data/features/help.feature +0 -11
- data/features/json_formatter.feature +0 -161
- data/features/lifecycle.feature +0 -378
- data/features/lockfile.feature +0 -378
- data/features/step_definitions/berksfile_steps.rb +0 -39
- data/features/step_definitions/chef/config_steps.rb +0 -12
- data/features/step_definitions/chef_server_steps.rb +0 -60
- data/features/step_definitions/cli_steps.rb +0 -18
- data/features/step_definitions/config_steps.rb +0 -46
- data/features/step_definitions/environment_steps.rb +0 -7
- data/features/step_definitions/filesystem_steps.rb +0 -269
- data/features/step_definitions/gem_steps.rb +0 -13
- data/features/step_definitions/json_steps.rb +0 -23
- data/features/step_definitions/utility_steps.rb +0 -11
- data/features/support/aruba.rb +0 -12
- data/features/support/env.rb +0 -82
- data/generator_files/Berksfile.erb +0 -11
- data/generator_files/CHANGELOG.md.erb +0 -3
- data/generator_files/Gemfile.erb +0 -8
- data/generator_files/README.md.erb +0 -42
- data/generator_files/Thorfile.erb +0 -11
- data/generator_files/Vagrantfile.erb +0 -117
- data/generator_files/chefignore +0 -94
- data/generator_files/default_recipe.erb +0 -6
- data/generator_files/default_test.rb.erb +0 -11
- data/generator_files/gitignore.erb +0 -23
- data/generator_files/helpers.rb.erb +0 -7
- data/generator_files/licenses/apachev2.erb +0 -13
- data/generator_files/licenses/gplv2.erb +0 -15
- data/generator_files/licenses/gplv3.erb +0 -14
- data/generator_files/licenses/mit.erb +0 -20
- data/generator_files/licenses/reserved.erb +0 -3
- data/generator_files/metadata.rb.erb +0 -11
- data/lib/berkshelf/base_generator.rb +0 -43
- data/lib/berkshelf/commands/test_command.rb +0 -13
- data/lib/berkshelf/cookbook_generator.rb +0 -133
- data/lib/berkshelf/init_generator.rb +0 -195
- data/spec/fixtures/cookbooks/example_cookbook/.gitignore +0 -2
- data/spec/fixtures/cookbooks/example_cookbook/.kitchen.yml +0 -26
- data/spec/unit/berkshelf/cookbook_generator_spec.rb +0 -110
- data/spec/unit/berkshelf/init_generator_spec.rb +0 -263
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: berkshelf
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 8.0.15
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jamie Winsor
|
@@ -9,38 +9,18 @@ authors:
|
|
9
9
|
- Michael Ivey
|
10
10
|
- Justin Campbell
|
11
11
|
- Seth Vargo
|
12
|
-
autorequire:
|
12
|
+
autorequire:
|
13
13
|
bindir: bin
|
14
14
|
cert_chain: []
|
15
|
-
date:
|
15
|
+
date: 2024-08-15 00:00:00.000000000 Z
|
16
16
|
dependencies:
|
17
17
|
- !ruby/object:Gem::Dependency
|
18
|
-
name:
|
18
|
+
name: mixlib-shellout
|
19
19
|
requirement: !ruby/object:Gem::Requirement
|
20
20
|
requirements:
|
21
|
-
- - "~>"
|
22
|
-
- !ruby/object:Gem::Version
|
23
|
-
version: '2.3'
|
24
|
-
- - ">="
|
25
|
-
- !ruby/object:Gem::Version
|
26
|
-
version: 2.3.4
|
27
|
-
type: :runtime
|
28
|
-
prerelease: false
|
29
|
-
version_requirements: !ruby/object:Gem::Requirement
|
30
|
-
requirements:
|
31
|
-
- - "~>"
|
32
|
-
- !ruby/object:Gem::Version
|
33
|
-
version: '2.3'
|
34
21
|
- - ">="
|
35
22
|
- !ruby/object:Gem::Version
|
36
|
-
version: 2.
|
37
|
-
- !ruby/object:Gem::Dependency
|
38
|
-
name: berkshelf-api-client
|
39
|
-
requirement: !ruby/object:Gem::Requirement
|
40
|
-
requirements:
|
41
|
-
- - ">="
|
42
|
-
- !ruby/object:Gem::Version
|
43
|
-
version: 2.0.2
|
23
|
+
version: '2.0'
|
44
24
|
- - "<"
|
45
25
|
- !ruby/object:Gem::Version
|
46
26
|
version: '4.0'
|
@@ -50,205 +30,209 @@ dependencies:
|
|
50
30
|
requirements:
|
51
31
|
- - ">="
|
52
32
|
- !ruby/object:Gem::Version
|
53
|
-
version: 2.0
|
33
|
+
version: '2.0'
|
54
34
|
- - "<"
|
55
35
|
- !ruby/object:Gem::Version
|
56
36
|
version: '4.0'
|
57
37
|
- !ruby/object:Gem::Dependency
|
58
|
-
name:
|
38
|
+
name: chef-cleanroom
|
59
39
|
requirement: !ruby/object:Gem::Requirement
|
60
40
|
requirements:
|
61
41
|
- - "~>"
|
62
42
|
- !ruby/object:Gem::Version
|
63
|
-
version: '
|
43
|
+
version: '1.0'
|
64
44
|
type: :runtime
|
65
45
|
prerelease: false
|
66
46
|
version_requirements: !ruby/object:Gem::Requirement
|
67
47
|
requirements:
|
68
48
|
- - "~>"
|
69
49
|
- !ruby/object:Gem::Version
|
70
|
-
version: '
|
50
|
+
version: '1.0'
|
71
51
|
- !ruby/object:Gem::Dependency
|
72
|
-
name:
|
52
|
+
name: minitar
|
73
53
|
requirement: !ruby/object:Gem::Requirement
|
74
54
|
requirements:
|
75
55
|
- - "~>"
|
76
56
|
- !ruby/object:Gem::Version
|
77
|
-
version: '
|
57
|
+
version: '1.0'
|
78
58
|
type: :runtime
|
79
59
|
prerelease: false
|
80
60
|
version_requirements: !ruby/object:Gem::Requirement
|
81
61
|
requirements:
|
82
62
|
- - "~>"
|
83
63
|
- !ruby/object:Gem::Version
|
84
|
-
version: '
|
64
|
+
version: '1.0'
|
85
65
|
- !ruby/object:Gem::Dependency
|
86
|
-
name:
|
66
|
+
name: chef
|
87
67
|
requirement: !ruby/object:Gem::Requirement
|
88
68
|
requirements:
|
89
|
-
- - "
|
69
|
+
- - ">="
|
90
70
|
- !ruby/object:Gem::Version
|
91
|
-
version:
|
71
|
+
version: 18.0.0
|
92
72
|
type: :runtime
|
93
73
|
prerelease: false
|
94
74
|
version_requirements: !ruby/object:Gem::Requirement
|
95
75
|
requirements:
|
96
|
-
- - "
|
76
|
+
- - ">="
|
97
77
|
- !ruby/object:Gem::Version
|
98
|
-
version:
|
78
|
+
version: 18.0.0
|
99
79
|
- !ruby/object:Gem::Dependency
|
100
|
-
name:
|
80
|
+
name: retryable
|
101
81
|
requirement: !ruby/object:Gem::Requirement
|
102
82
|
requirements:
|
103
|
-
- - "
|
83
|
+
- - ">="
|
104
84
|
- !ruby/object:Gem::Version
|
105
|
-
version: '
|
85
|
+
version: '2.0'
|
86
|
+
- - "<"
|
87
|
+
- !ruby/object:Gem::Version
|
88
|
+
version: '4.0'
|
106
89
|
type: :runtime
|
107
90
|
prerelease: false
|
108
91
|
version_requirements: !ruby/object:Gem::Requirement
|
109
92
|
requirements:
|
110
|
-
- - "
|
93
|
+
- - ">="
|
111
94
|
- !ruby/object:Gem::Version
|
112
|
-
version: '
|
95
|
+
version: '2.0'
|
96
|
+
- - "<"
|
97
|
+
- !ruby/object:Gem::Version
|
98
|
+
version: '4.0'
|
113
99
|
- !ruby/object:Gem::Dependency
|
114
|
-
name:
|
100
|
+
name: solve
|
115
101
|
requirement: !ruby/object:Gem::Requirement
|
116
102
|
requirements:
|
117
103
|
- - "~>"
|
118
104
|
- !ruby/object:Gem::Version
|
119
|
-
version: '0
|
105
|
+
version: '4.0'
|
120
106
|
type: :runtime
|
121
107
|
prerelease: false
|
122
108
|
version_requirements: !ruby/object:Gem::Requirement
|
123
109
|
requirements:
|
124
110
|
- - "~>"
|
125
111
|
- !ruby/object:Gem::Version
|
126
|
-
version: '0
|
112
|
+
version: '4.0'
|
127
113
|
- !ruby/object:Gem::Dependency
|
128
|
-
name:
|
114
|
+
name: thor
|
129
115
|
requirement: !ruby/object:Gem::Requirement
|
130
116
|
requirements:
|
131
|
-
- - "
|
117
|
+
- - ">="
|
118
|
+
- !ruby/object:Gem::Version
|
119
|
+
version: '0.20'
|
120
|
+
- - "<"
|
132
121
|
- !ruby/object:Gem::Version
|
133
|
-
version:
|
122
|
+
version: 1.3.0
|
134
123
|
type: :runtime
|
135
124
|
prerelease: false
|
136
125
|
version_requirements: !ruby/object:Gem::Requirement
|
137
126
|
requirements:
|
138
|
-
- - "
|
127
|
+
- - ">="
|
139
128
|
- !ruby/object:Gem::Version
|
140
|
-
version: '
|
129
|
+
version: '0.20'
|
130
|
+
- - "<"
|
131
|
+
- !ruby/object:Gem::Version
|
132
|
+
version: 1.3.0
|
141
133
|
- !ruby/object:Gem::Dependency
|
142
|
-
name:
|
134
|
+
name: octokit
|
143
135
|
requirement: !ruby/object:Gem::Requirement
|
144
136
|
requirements:
|
145
|
-
- - "~>"
|
146
|
-
- !ruby/object:Gem::Version
|
147
|
-
version: '0.5'
|
148
137
|
- - ">="
|
149
138
|
- !ruby/object:Gem::Version
|
150
|
-
version: 0
|
139
|
+
version: '4.0'
|
140
|
+
- - "<"
|
141
|
+
- !ruby/object:Gem::Version
|
142
|
+
version: '6.0'
|
151
143
|
type: :runtime
|
152
144
|
prerelease: false
|
153
145
|
version_requirements: !ruby/object:Gem::Requirement
|
154
146
|
requirements:
|
155
|
-
- - "~>"
|
156
|
-
- !ruby/object:Gem::Version
|
157
|
-
version: '0.5'
|
158
147
|
- - ">="
|
159
148
|
- !ruby/object:Gem::Version
|
160
|
-
version: 0
|
149
|
+
version: '4.0'
|
150
|
+
- - "<"
|
151
|
+
- !ruby/object:Gem::Version
|
152
|
+
version: '6.0'
|
161
153
|
- !ruby/object:Gem::Dependency
|
162
|
-
name:
|
154
|
+
name: mixlib-archive
|
163
155
|
requirement: !ruby/object:Gem::Requirement
|
164
156
|
requirements:
|
165
|
-
- - "
|
157
|
+
- - ">="
|
158
|
+
- !ruby/object:Gem::Version
|
159
|
+
version: 1.1.4
|
160
|
+
- - "<"
|
166
161
|
- !ruby/object:Gem::Version
|
167
162
|
version: '2.0'
|
168
163
|
type: :runtime
|
169
164
|
prerelease: false
|
170
165
|
version_requirements: !ruby/object:Gem::Requirement
|
171
166
|
requirements:
|
172
|
-
- - "
|
167
|
+
- - ">="
|
168
|
+
- !ruby/object:Gem::Version
|
169
|
+
version: 1.1.4
|
170
|
+
- - "<"
|
173
171
|
- !ruby/object:Gem::Version
|
174
172
|
version: '2.0'
|
175
173
|
- !ruby/object:Gem::Dependency
|
176
|
-
name:
|
174
|
+
name: concurrent-ruby
|
177
175
|
requirement: !ruby/object:Gem::Requirement
|
178
176
|
requirements:
|
179
177
|
- - "~>"
|
180
178
|
- !ruby/object:Gem::Version
|
181
|
-
version: '
|
179
|
+
version: '1.0'
|
182
180
|
type: :runtime
|
183
181
|
prerelease: false
|
184
182
|
version_requirements: !ruby/object:Gem::Requirement
|
185
183
|
requirements:
|
186
184
|
- - "~>"
|
187
185
|
- !ruby/object:Gem::Version
|
188
|
-
version: '
|
186
|
+
version: '1.0'
|
189
187
|
- !ruby/object:Gem::Dependency
|
190
|
-
name:
|
188
|
+
name: ffi
|
191
189
|
requirement: !ruby/object:Gem::Requirement
|
192
190
|
requirements:
|
193
|
-
- - "
|
191
|
+
- - "~>"
|
194
192
|
- !ruby/object:Gem::Version
|
195
|
-
version: '
|
193
|
+
version: '1.9'
|
196
194
|
- - "<"
|
197
195
|
- !ruby/object:Gem::Version
|
198
|
-
version:
|
196
|
+
version: 1.16.0
|
199
197
|
type: :runtime
|
200
198
|
prerelease: false
|
201
199
|
version_requirements: !ruby/object:Gem::Requirement
|
202
|
-
requirements:
|
203
|
-
- - ">"
|
204
|
-
- !ruby/object:Gem::Version
|
205
|
-
version: '2.0'
|
206
|
-
- - "<"
|
207
|
-
- !ruby/object:Gem::Version
|
208
|
-
version: '4.0'
|
209
|
-
- !ruby/object:Gem::Dependency
|
210
|
-
name: thor
|
211
|
-
requirement: !ruby/object:Gem::Requirement
|
212
200
|
requirements:
|
213
201
|
- - "~>"
|
214
202
|
- !ruby/object:Gem::Version
|
215
|
-
version: '
|
216
|
-
|
217
|
-
prerelease: false
|
218
|
-
version_requirements: !ruby/object:Gem::Requirement
|
219
|
-
requirements:
|
220
|
-
- - "~>"
|
203
|
+
version: '1.9'
|
204
|
+
- - "<"
|
221
205
|
- !ruby/object:Gem::Version
|
222
|
-
version:
|
206
|
+
version: 1.16.0
|
223
207
|
- !ruby/object:Gem::Dependency
|
224
|
-
name:
|
208
|
+
name: chef-config
|
225
209
|
requirement: !ruby/object:Gem::Requirement
|
226
210
|
requirements:
|
227
|
-
- - "
|
211
|
+
- - ">="
|
228
212
|
- !ruby/object:Gem::Version
|
229
|
-
version: '
|
213
|
+
version: '0'
|
230
214
|
type: :runtime
|
231
215
|
prerelease: false
|
232
216
|
version_requirements: !ruby/object:Gem::Requirement
|
233
217
|
requirements:
|
234
|
-
- - "
|
218
|
+
- - ">="
|
235
219
|
- !ruby/object:Gem::Version
|
236
|
-
version: '
|
220
|
+
version: '0'
|
237
221
|
- !ruby/object:Gem::Dependency
|
238
|
-
name: mixlib-
|
222
|
+
name: mixlib-config
|
239
223
|
requirement: !ruby/object:Gem::Requirement
|
240
224
|
requirements:
|
241
|
-
- - "
|
225
|
+
- - ">="
|
242
226
|
- !ruby/object:Gem::Version
|
243
|
-
version:
|
227
|
+
version: 2.2.5
|
244
228
|
type: :runtime
|
245
229
|
prerelease: false
|
246
230
|
version_requirements: !ruby/object:Gem::Requirement
|
247
231
|
requirements:
|
248
|
-
- - "
|
232
|
+
- - ">="
|
249
233
|
- !ruby/object:Gem::Version
|
250
|
-
version:
|
251
|
-
description: Manages a
|
234
|
+
version: 2.2.5
|
235
|
+
description: Manages a Chef cookbook's dependencies
|
252
236
|
email:
|
253
237
|
- jamie@vialstudios.com
|
254
238
|
- jkiehl@riotgames.com
|
@@ -260,88 +244,27 @@ executables:
|
|
260
244
|
extensions: []
|
261
245
|
extra_rdoc_files: []
|
262
246
|
files:
|
263
|
-
- ".gitignore"
|
264
|
-
- ".travis.yml"
|
265
|
-
- CHANGELOG.legacy.md
|
266
|
-
- CHANGELOG.md
|
267
|
-
- CONTRIBUTING.md
|
268
247
|
- Gemfile
|
269
|
-
- Gemfile.lock
|
270
|
-
- Guardfile
|
271
248
|
- LICENSE
|
272
|
-
- PLUGINS.md
|
273
|
-
- README.md
|
274
249
|
- Rakefile
|
275
|
-
- Thorfile
|
276
|
-
- appveyor.yml
|
277
250
|
- berkshelf.gemspec
|
278
251
|
- bin/berks
|
279
|
-
- docs/berkshelf_for_newcomers.md
|
280
|
-
- features/berksfile.feature
|
281
|
-
- features/commands/apply.feature
|
282
|
-
- features/commands/contingent.feature
|
283
|
-
- features/commands/cookbook.feature
|
284
|
-
- features/commands/info.feature
|
285
|
-
- features/commands/init.feature
|
286
|
-
- features/commands/install.feature
|
287
|
-
- features/commands/list.feature
|
288
|
-
- features/commands/outdated.feature
|
289
|
-
- features/commands/package.feature
|
290
|
-
- features/commands/search.feature
|
291
|
-
- features/commands/shelf/list.feature
|
292
|
-
- features/commands/shelf/show.feature
|
293
|
-
- features/commands/shelf/uninstall.feature
|
294
|
-
- features/commands/show.feature
|
295
|
-
- features/commands/update.feature
|
296
|
-
- features/commands/upload.feature
|
297
|
-
- features/commands/vendor.feature
|
298
|
-
- features/commands/verify.feature
|
299
|
-
- features/commands/viz.feature
|
300
|
-
- features/community_site.feature
|
301
|
-
- features/config.feature
|
302
|
-
- features/help.feature
|
303
|
-
- features/json_formatter.feature
|
304
|
-
- features/lifecycle.feature
|
305
|
-
- features/lockfile.feature
|
306
|
-
- features/step_definitions/berksfile_steps.rb
|
307
|
-
- features/step_definitions/chef/config_steps.rb
|
308
|
-
- features/step_definitions/chef_server_steps.rb
|
309
|
-
- features/step_definitions/cli_steps.rb
|
310
|
-
- features/step_definitions/config_steps.rb
|
311
|
-
- features/step_definitions/environment_steps.rb
|
312
|
-
- features/step_definitions/filesystem_steps.rb
|
313
|
-
- features/step_definitions/gem_steps.rb
|
314
|
-
- features/step_definitions/json_steps.rb
|
315
|
-
- features/step_definitions/utility_steps.rb
|
316
|
-
- features/support/aruba.rb
|
317
|
-
- features/support/env.rb
|
318
|
-
- generator_files/Berksfile.erb
|
319
|
-
- generator_files/CHANGELOG.md.erb
|
320
|
-
- generator_files/Gemfile.erb
|
321
|
-
- generator_files/README.md.erb
|
322
|
-
- generator_files/Thorfile.erb
|
323
|
-
- generator_files/Vagrantfile.erb
|
324
|
-
- generator_files/chefignore
|
325
|
-
- generator_files/default_recipe.erb
|
326
|
-
- generator_files/default_test.rb.erb
|
327
|
-
- generator_files/gitignore.erb
|
328
|
-
- generator_files/helpers.rb.erb
|
329
|
-
- generator_files/licenses/apachev2.erb
|
330
|
-
- generator_files/licenses/gplv2.erb
|
331
|
-
- generator_files/licenses/gplv3.erb
|
332
|
-
- generator_files/licenses/mit.erb
|
333
|
-
- generator_files/licenses/reserved.erb
|
334
|
-
- generator_files/metadata.rb.erb
|
335
252
|
- lib/berkshelf.rb
|
336
|
-
- lib/berkshelf/
|
253
|
+
- lib/berkshelf/api-client.rb
|
254
|
+
- lib/berkshelf/api_client.rb
|
255
|
+
- lib/berkshelf/api_client/chef_server_connection.rb
|
256
|
+
- lib/berkshelf/api_client/connection.rb
|
257
|
+
- lib/berkshelf/api_client/errors.rb
|
258
|
+
- lib/berkshelf/api_client/remote_cookbook.rb
|
259
|
+
- lib/berkshelf/api_client/version.rb
|
337
260
|
- lib/berkshelf/berksfile.rb
|
338
261
|
- lib/berkshelf/cached_cookbook.rb
|
262
|
+
- lib/berkshelf/chef_config_compat.rb
|
263
|
+
- lib/berkshelf/chef_repo_universe.rb
|
339
264
|
- lib/berkshelf/cli.rb
|
340
265
|
- lib/berkshelf/commands/shelf.rb
|
341
|
-
- lib/berkshelf/commands/test_command.rb
|
342
266
|
- lib/berkshelf/community_rest.rb
|
343
267
|
- lib/berkshelf/config.rb
|
344
|
-
- lib/berkshelf/cookbook_generator.rb
|
345
268
|
- lib/berkshelf/cookbook_store.rb
|
346
269
|
- lib/berkshelf/core_ext.rb
|
347
270
|
- lib/berkshelf/core_ext/file.rb
|
@@ -356,7 +279,6 @@ files:
|
|
356
279
|
- lib/berkshelf/formatters/human.rb
|
357
280
|
- lib/berkshelf/formatters/json.rb
|
358
281
|
- lib/berkshelf/formatters/null.rb
|
359
|
-
- lib/berkshelf/init_generator.rb
|
360
282
|
- lib/berkshelf/installer.rb
|
361
283
|
- lib/berkshelf/location.rb
|
362
284
|
- lib/berkshelf/locations/base.rb
|
@@ -370,9 +292,12 @@ files:
|
|
370
292
|
- lib/berkshelf/packager.rb
|
371
293
|
- lib/berkshelf/resolver.rb
|
372
294
|
- lib/berkshelf/resolver/graph.rb
|
295
|
+
- lib/berkshelf/ridley_compat.rb
|
373
296
|
- lib/berkshelf/shell.rb
|
297
|
+
- lib/berkshelf/shell_out.rb
|
374
298
|
- lib/berkshelf/source.rb
|
375
299
|
- lib/berkshelf/source_uri.rb
|
300
|
+
- lib/berkshelf/ssl_policies.rb
|
376
301
|
- lib/berkshelf/thor.rb
|
377
302
|
- lib/berkshelf/thor_ext.rb
|
378
303
|
- lib/berkshelf/thor_ext/hash_with_indifferent_access.rb
|
@@ -383,16 +308,25 @@ files:
|
|
383
308
|
- spec/config/berkshelf.pem
|
384
309
|
- spec/config/knife.rb
|
385
310
|
- spec/config/validator.pem
|
311
|
+
- spec/data/trusted_certs/example.crt
|
386
312
|
- spec/fixtures/Berksfile
|
387
313
|
- spec/fixtures/berksfiles/default
|
314
|
+
- spec/fixtures/complex-cookbook-path/cookbooks/app/metadata.rb
|
315
|
+
- spec/fixtures/complex-cookbook-path/cookbooks/jenkins-config/metadata.rb
|
316
|
+
- spec/fixtures/complex-cookbook-path/cookbooks/jenkins/metadata.rb
|
317
|
+
- spec/fixtures/cookbook-path-uploader/apt-2.3.6/metadata.rb
|
318
|
+
- spec/fixtures/cookbook-path-uploader/build-essential-1.4.2/metadata.rb
|
319
|
+
- spec/fixtures/cookbook-path-uploader/jenkins-2.0.3/metadata.rb
|
320
|
+
- spec/fixtures/cookbook-path-uploader/jenkins-config-0.1.0/metadata.rb
|
321
|
+
- spec/fixtures/cookbook-path-uploader/runit-1.5.8/metadata.rb
|
322
|
+
- spec/fixtures/cookbook-path-uploader/yum-3.0.6/metadata.rb
|
323
|
+
- spec/fixtures/cookbook-path-uploader/yum-epel-0.2.0/metadata.rb
|
388
324
|
- spec/fixtures/cookbook-path/jenkins-config/metadata.rb
|
389
325
|
- spec/fixtures/cookbook-store/jenkins-2.0.3/metadata.rb
|
390
326
|
- spec/fixtures/cookbook-store/jenkins-2.0.4/metadata.rb
|
391
327
|
- spec/fixtures/cookbooks/example_cookbook-0.5.0/README.md
|
392
328
|
- spec/fixtures/cookbooks/example_cookbook-0.5.0/metadata.rb
|
393
329
|
- spec/fixtures/cookbooks/example_cookbook-0.5.0/recipes/default.rb
|
394
|
-
- spec/fixtures/cookbooks/example_cookbook/.gitignore
|
395
|
-
- spec/fixtures/cookbooks/example_cookbook/.kitchen.yml
|
396
330
|
- spec/fixtures/cookbooks/example_cookbook/Berksfile
|
397
331
|
- spec/fixtures/cookbooks/example_cookbook/Berksfile.lock
|
398
332
|
- spec/fixtures/cookbooks/example_cookbook/README.md
|
@@ -412,12 +346,31 @@ files:
|
|
412
346
|
- spec/support/matchers/filepath_matchers.rb
|
413
347
|
- spec/support/path_helpers.rb
|
414
348
|
- spec/support/shared_examples/formatter.rb
|
349
|
+
- spec/tmp/berkshelf/cookbooks/fake-0.1.0/attributes/default.rb
|
350
|
+
- spec/tmp/berkshelf/cookbooks/fake-0.1.0/files/default/file.h
|
351
|
+
- spec/tmp/berkshelf/cookbooks/fake-0.1.0/metadata.rb
|
352
|
+
- spec/tmp/berkshelf/cookbooks/fake-0.1.0/recipes/default.rb
|
353
|
+
- spec/tmp/berkshelf/cookbooks/fake-0.1.0/templates/default/template.erb
|
354
|
+
- spec/tmp/berkshelf/cookbooks/fake-0.2.0/attributes/default.rb
|
355
|
+
- spec/tmp/berkshelf/cookbooks/fake-0.2.0/files/default/file.h
|
356
|
+
- spec/tmp/berkshelf/cookbooks/fake-0.2.0/metadata.rb
|
357
|
+
- spec/tmp/berkshelf/cookbooks/fake-0.2.0/recipes/default.rb
|
358
|
+
- spec/tmp/berkshelf/cookbooks/fake-0.2.0/templates/default/template.erb
|
359
|
+
- spec/tmp/berkshelf/cookbooks/fake-1.0.0/attributes/default.rb
|
360
|
+
- spec/tmp/berkshelf/cookbooks/fake-1.0.0/files/default/file.h
|
361
|
+
- spec/tmp/berkshelf/cookbooks/fake-1.0.0/metadata.rb
|
362
|
+
- spec/tmp/berkshelf/cookbooks/fake-1.0.0/recipes/default.rb
|
363
|
+
- spec/tmp/berkshelf/cookbooks/fake-1.0.0/templates/default/template.erb
|
415
364
|
- spec/unit/berkshelf/berksfile_spec.rb
|
365
|
+
- spec/unit/berkshelf/berkshelf/api_client/chef_server_connection_spec.rb
|
366
|
+
- spec/unit/berkshelf/berkshelf/api_client/connection_spec.rb
|
367
|
+
- spec/unit/berkshelf/berkshelf/api_client/remote_cookbook_spec.rb
|
368
|
+
- spec/unit/berkshelf/berkshelf/api_client_spec.rb
|
416
369
|
- spec/unit/berkshelf/cached_cookbook_spec.rb
|
370
|
+
- spec/unit/berkshelf/chef_repo_universe_spec.rb
|
417
371
|
- spec/unit/berkshelf/cli_spec.rb
|
418
372
|
- spec/unit/berkshelf/community_rest_spec.rb
|
419
373
|
- spec/unit/berkshelf/config_spec.rb
|
420
|
-
- spec/unit/berkshelf/cookbook_generator_spec.rb
|
421
374
|
- spec/unit/berkshelf/cookbook_store_spec.rb
|
422
375
|
- spec/unit/berkshelf/core_ext/file_utils_spec.rb
|
423
376
|
- spec/unit/berkshelf/core_ext/pathname_spec.rb
|
@@ -429,7 +382,6 @@ files:
|
|
429
382
|
- spec/unit/berkshelf/formatters/human_spec.rb
|
430
383
|
- spec/unit/berkshelf/formatters/json_spec.rb
|
431
384
|
- spec/unit/berkshelf/formatters/null_spec.rb
|
432
|
-
- spec/unit/berkshelf/init_generator_spec.rb
|
433
385
|
- spec/unit/berkshelf/installer_spec.rb
|
434
386
|
- spec/unit/berkshelf/location_spec.rb
|
435
387
|
- spec/unit/berkshelf/locations/base_spec.rb
|
@@ -442,18 +394,23 @@ files:
|
|
442
394
|
- spec/unit/berkshelf/packager_spec.rb
|
443
395
|
- spec/unit/berkshelf/resolver/graph_spec.rb
|
444
396
|
- spec/unit/berkshelf/resolver_spec.rb
|
397
|
+
- spec/unit/berkshelf/ridley_compat_spec.rb
|
445
398
|
- spec/unit/berkshelf/shell_spec.rb
|
446
399
|
- spec/unit/berkshelf/source_spec.rb
|
447
400
|
- spec/unit/berkshelf/source_uri_spec.rb
|
401
|
+
- spec/unit/berkshelf/ssl_policies_spec.rb
|
448
402
|
- spec/unit/berkshelf/uploader_spec.rb
|
449
403
|
- spec/unit/berkshelf/validator_spec.rb
|
450
404
|
- spec/unit/berkshelf/visualizer_spec.rb
|
451
405
|
- spec/unit/berkshelf_spec.rb
|
452
|
-
homepage:
|
406
|
+
homepage: https://docs.chef.io/berkshelf.html
|
453
407
|
licenses:
|
454
|
-
- Apache
|
455
|
-
metadata:
|
456
|
-
|
408
|
+
- Apache-2.0
|
409
|
+
metadata:
|
410
|
+
bug_tracker_uri: https://github.com/chef/berkshelf/issues
|
411
|
+
source_code_uri: https://github.com/chef/berkshelf
|
412
|
+
changelog_uri: https://github.com/chef/berkshelf/blob/main/CHANGELOG.md
|
413
|
+
post_install_message:
|
457
414
|
rdoc_options: []
|
458
415
|
require_paths:
|
459
416
|
- lib
|
@@ -461,123 +418,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
461
418
|
requirements:
|
462
419
|
- - ">="
|
463
420
|
- !ruby/object:Gem::Version
|
464
|
-
version: 2.
|
421
|
+
version: 2.7.0
|
465
422
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
466
423
|
requirements:
|
467
424
|
- - ">="
|
468
425
|
- !ruby/object:Gem::Version
|
469
426
|
version: 2.0.0
|
470
427
|
requirements: []
|
471
|
-
|
472
|
-
|
473
|
-
signing_key:
|
428
|
+
rubygems_version: 3.3.26
|
429
|
+
signing_key:
|
474
430
|
specification_version: 4
|
475
|
-
summary: Manages a
|
476
|
-
test_files:
|
477
|
-
- features/berksfile.feature
|
478
|
-
- features/commands/apply.feature
|
479
|
-
- features/commands/contingent.feature
|
480
|
-
- features/commands/cookbook.feature
|
481
|
-
- features/commands/info.feature
|
482
|
-
- features/commands/init.feature
|
483
|
-
- features/commands/install.feature
|
484
|
-
- features/commands/list.feature
|
485
|
-
- features/commands/outdated.feature
|
486
|
-
- features/commands/package.feature
|
487
|
-
- features/commands/search.feature
|
488
|
-
- features/commands/shelf/list.feature
|
489
|
-
- features/commands/shelf/show.feature
|
490
|
-
- features/commands/shelf/uninstall.feature
|
491
|
-
- features/commands/show.feature
|
492
|
-
- features/commands/update.feature
|
493
|
-
- features/commands/upload.feature
|
494
|
-
- features/commands/vendor.feature
|
495
|
-
- features/commands/verify.feature
|
496
|
-
- features/commands/viz.feature
|
497
|
-
- features/community_site.feature
|
498
|
-
- features/config.feature
|
499
|
-
- features/help.feature
|
500
|
-
- features/json_formatter.feature
|
501
|
-
- features/lifecycle.feature
|
502
|
-
- features/lockfile.feature
|
503
|
-
- features/step_definitions/berksfile_steps.rb
|
504
|
-
- features/step_definitions/chef/config_steps.rb
|
505
|
-
- features/step_definitions/chef_server_steps.rb
|
506
|
-
- features/step_definitions/cli_steps.rb
|
507
|
-
- features/step_definitions/config_steps.rb
|
508
|
-
- features/step_definitions/environment_steps.rb
|
509
|
-
- features/step_definitions/filesystem_steps.rb
|
510
|
-
- features/step_definitions/gem_steps.rb
|
511
|
-
- features/step_definitions/json_steps.rb
|
512
|
-
- features/step_definitions/utility_steps.rb
|
513
|
-
- features/support/aruba.rb
|
514
|
-
- features/support/env.rb
|
515
|
-
- spec/config/berkshelf.pem
|
516
|
-
- spec/config/knife.rb
|
517
|
-
- spec/config/validator.pem
|
518
|
-
- spec/fixtures/Berksfile
|
519
|
-
- spec/fixtures/berksfiles/default
|
520
|
-
- spec/fixtures/cookbook-path/jenkins-config/metadata.rb
|
521
|
-
- spec/fixtures/cookbook-store/jenkins-2.0.3/metadata.rb
|
522
|
-
- spec/fixtures/cookbook-store/jenkins-2.0.4/metadata.rb
|
523
|
-
- spec/fixtures/cookbooks/example_cookbook-0.5.0/README.md
|
524
|
-
- spec/fixtures/cookbooks/example_cookbook-0.5.0/metadata.rb
|
525
|
-
- spec/fixtures/cookbooks/example_cookbook-0.5.0/recipes/default.rb
|
526
|
-
- spec/fixtures/cookbooks/example_cookbook/.gitignore
|
527
|
-
- spec/fixtures/cookbooks/example_cookbook/.kitchen.yml
|
528
|
-
- spec/fixtures/cookbooks/example_cookbook/Berksfile
|
529
|
-
- spec/fixtures/cookbooks/example_cookbook/Berksfile.lock
|
530
|
-
- spec/fixtures/cookbooks/example_cookbook/README.md
|
531
|
-
- spec/fixtures/cookbooks/example_cookbook/metadata.rb
|
532
|
-
- spec/fixtures/cookbooks/example_cookbook/recipes/default.rb
|
533
|
-
- spec/fixtures/lockfiles/2.0.lock
|
534
|
-
- spec/fixtures/lockfiles/blank.lock
|
535
|
-
- spec/fixtures/lockfiles/default.lock
|
536
|
-
- spec/fixtures/lockfiles/empty.lock
|
537
|
-
- spec/fixtures/lockfiles/orphans.lock
|
538
|
-
- spec/spec_helper.rb
|
539
|
-
- spec/support/chef_api.rb
|
540
|
-
- spec/support/chef_server.rb
|
541
|
-
- spec/support/git.rb
|
542
|
-
- spec/support/kitchen.rb
|
543
|
-
- spec/support/matchers/file_system_matchers.rb
|
544
|
-
- spec/support/matchers/filepath_matchers.rb
|
545
|
-
- spec/support/path_helpers.rb
|
546
|
-
- spec/support/shared_examples/formatter.rb
|
547
|
-
- spec/unit/berkshelf/berksfile_spec.rb
|
548
|
-
- spec/unit/berkshelf/cached_cookbook_spec.rb
|
549
|
-
- spec/unit/berkshelf/cli_spec.rb
|
550
|
-
- spec/unit/berkshelf/community_rest_spec.rb
|
551
|
-
- spec/unit/berkshelf/config_spec.rb
|
552
|
-
- spec/unit/berkshelf/cookbook_generator_spec.rb
|
553
|
-
- spec/unit/berkshelf/cookbook_store_spec.rb
|
554
|
-
- spec/unit/berkshelf/core_ext/file_utils_spec.rb
|
555
|
-
- spec/unit/berkshelf/core_ext/pathname_spec.rb
|
556
|
-
- spec/unit/berkshelf/dependency_spec.rb
|
557
|
-
- spec/unit/berkshelf/downloader_spec.rb
|
558
|
-
- spec/unit/berkshelf/errors_spec.rb
|
559
|
-
- spec/unit/berkshelf/file_syncer_spec.rb
|
560
|
-
- spec/unit/berkshelf/formatters/base_spec.rb
|
561
|
-
- spec/unit/berkshelf/formatters/human_spec.rb
|
562
|
-
- spec/unit/berkshelf/formatters/json_spec.rb
|
563
|
-
- spec/unit/berkshelf/formatters/null_spec.rb
|
564
|
-
- spec/unit/berkshelf/init_generator_spec.rb
|
565
|
-
- spec/unit/berkshelf/installer_spec.rb
|
566
|
-
- spec/unit/berkshelf/location_spec.rb
|
567
|
-
- spec/unit/berkshelf/locations/base_spec.rb
|
568
|
-
- spec/unit/berkshelf/locations/git_spec.rb
|
569
|
-
- spec/unit/berkshelf/locations/path_spec.rb
|
570
|
-
- spec/unit/berkshelf/lockfile_parser_spec.rb
|
571
|
-
- spec/unit/berkshelf/lockfile_spec.rb
|
572
|
-
- spec/unit/berkshelf/logger_spec.rb
|
573
|
-
- spec/unit/berkshelf/mixin/logging_spec.rb
|
574
|
-
- spec/unit/berkshelf/packager_spec.rb
|
575
|
-
- spec/unit/berkshelf/resolver/graph_spec.rb
|
576
|
-
- spec/unit/berkshelf/resolver_spec.rb
|
577
|
-
- spec/unit/berkshelf/shell_spec.rb
|
578
|
-
- spec/unit/berkshelf/source_spec.rb
|
579
|
-
- spec/unit/berkshelf/source_uri_spec.rb
|
580
|
-
- spec/unit/berkshelf/uploader_spec.rb
|
581
|
-
- spec/unit/berkshelf/validator_spec.rb
|
582
|
-
- spec/unit/berkshelf/visualizer_spec.rb
|
583
|
-
- spec/unit/berkshelf_spec.rb
|
431
|
+
summary: Manages a Chef cookbook's dependencies
|
432
|
+
test_files: []
|