berkshelf 7.0.7 → 7.0.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Rakefile +1 -1
- data/berkshelf.gemspec +8 -9
- data/bin/berks +5 -0
- data/lib/berkshelf/cached_cookbook.rb +1 -1
- data/lib/berkshelf/chef_config_compat.rb +1 -0
- data/lib/berkshelf/chef_repo_universe.rb +2 -2
- data/lib/berkshelf/formatters/json.rb +3 -3
- data/lib/berkshelf/lockfile.rb +3 -3
- data/lib/berkshelf/uploader.rb +3 -3
- data/lib/berkshelf/version.rb +1 -1
- metadata +32 -186
- data/.github/lock.yml +0 -1
- data/.gitignore +0 -30
- data/.rubocop.yml +0 -12
- data/.travis.yml +0 -73
- data/CHANGELOG.legacy.md +0 -307
- data/CHANGELOG.md +0 -1589
- data/CONTRIBUTING.md +0 -68
- data/Gemfile.lock +0 -292
- data/PLUGINS.md +0 -25
- data/README.md +0 -72
- data/Thorfile +0 -61
- data/appveyor.yml +0 -31
- data/docs/berkshelf_for_newcomers.md +0 -64
- data/features/artifactory.feature +0 -70
- data/features/berksfile.feature +0 -46
- data/features/commands/apply.feature +0 -41
- data/features/commands/contingent.feature +0 -47
- data/features/commands/info.feature +0 -141
- data/features/commands/install.feature +0 -646
- data/features/commands/list.feature +0 -78
- data/features/commands/outdated.feature +0 -176
- 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 -113
- 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 -499
- data/features/commands/vendor.feature +0 -154
- data/features/commands/verify.feature +0 -29
- data/features/commands/viz.feature +0 -66
- data/features/community_site.feature +0 -37
- data/features/help.feature +0 -11
- data/features/json_formatter.feature +0 -158
- data/features/lifecycle.feature +0 -378
- data/features/lockfile.feature +0 -378
- data/features/step_definitions/berksfile_steps.rb +0 -54
- 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 -11
- data/features/step_definitions/filesystem_steps.rb +0 -286
- data/features/step_definitions/gem_steps.rb +0 -13
- data/features/step_definitions/json_steps.rb +0 -29
- data/features/step_definitions/utility_steps.rb +0 -11
- data/features/support/aruba.rb +0 -12
- data/features/support/env.rb +0 -77
- data/spec/fixtures/cookbooks/example_cookbook/.gitignore +0 -2
- data/spec/fixtures/cookbooks/example_cookbook/.kitchen.yml +0 -26
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7106f564a5687739b6b869ddb82caab720210cb55ceaec843de5864321752591
|
4
|
+
data.tar.gz: 4196d7280ddf0bcec16c38c6cde5b9829a8e7d37b3aed818671e23294d1af301
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ba89f50812a6ffa647fc6c9cb349ce169e9fbb2c641d635157ed4410e75363f5eb2a4ab817002de907965bde4234fd9d7930dfe1a3f76bd8997aa4f2efe30a72
|
7
|
+
data.tar.gz: 51c592e399c3213ec72755dca557b7926e1d8abd14659bcc6e2547d032b018eac8c4b3fb69037e4c26fefe7611b0d3c96465af6fe7f67e62915107476b6018d7
|
data/Rakefile
CHANGED
data/berkshelf.gemspec
CHANGED
@@ -17,27 +17,26 @@ Gem::Specification.new do |s|
|
|
17
17
|
"sethvargo@gmail.com",
|
18
18
|
]
|
19
19
|
|
20
|
-
s.description = %q{Manages a
|
20
|
+
s.description = %q{Manages a Chef cookbook's dependencies}
|
21
21
|
s.summary = s.description
|
22
|
-
s.homepage = "
|
23
|
-
s.license = "Apache
|
24
|
-
s.files =
|
25
|
-
s.executables =
|
26
|
-
s.test_files = s.files.grep(%r{^(test|spec|features)/})
|
22
|
+
s.homepage = "https://docs.chef.io/berkshelf.html"
|
23
|
+
s.license = "Apache-2.0"
|
24
|
+
s.files = %w{LICENSE Gemfile Rakefile} + Dir.glob("*.gemspec") + Dir.glob("{lib,spec, features}/**/*")
|
25
|
+
s.executables = Dir.glob("bin/**/*").map { |f| File.basename(f) }
|
27
26
|
s.name = "berkshelf"
|
28
27
|
s.require_paths = ["lib"]
|
29
28
|
s.version = Berkshelf::VERSION
|
30
29
|
s.required_ruby_version = ">= 2.4.0"
|
31
30
|
s.required_rubygems_version = ">= 2.0.0"
|
32
31
|
|
33
|
-
s.add_dependency "mixlib-shellout", "
|
32
|
+
s.add_dependency "mixlib-shellout", ">= 2.0", "< 4.0"
|
34
33
|
s.add_dependency "cleanroom", "~> 1.0"
|
35
34
|
s.add_dependency "minitar", ">= 0.6"
|
36
|
-
s.add_dependency "retryable", "
|
35
|
+
s.add_dependency "retryable", ">= 2.0", "< 4.0"
|
37
36
|
s.add_dependency "solve", "~> 4.0"
|
38
37
|
s.add_dependency "thor", ">= 0.20"
|
39
38
|
s.add_dependency "octokit", "~> 4.0"
|
40
|
-
s.add_dependency "mixlib-archive", "
|
39
|
+
s.add_dependency "mixlib-archive", ">= 0.4", "< 2.0"
|
41
40
|
s.add_dependency "concurrent-ruby", "~> 1.0"
|
42
41
|
s.add_dependency "chef", ">= 13.6.52"
|
43
42
|
s.add_dependency "chef-config"
|
data/bin/berks
ADDED
@@ -13,6 +13,7 @@ module Berkshelf
|
|
13
13
|
ChefConfig::WorkstationConfigLoader.new(path).load
|
14
14
|
ChefConfig::Config.merge!(options)
|
15
15
|
ChefConfig::Config.export_proxies # Set proxy settings as environment variables
|
16
|
+
ChefConfig::Config.init_openssl # setup openssl + fips mode
|
16
17
|
end
|
17
18
|
|
18
19
|
# Keep defaults that aren't in ChefConfig::Config
|
@@ -19,8 +19,8 @@ module Berkshelf
|
|
19
19
|
next unless File.directory?(entry_path) # Skip non-dirs.
|
20
20
|
cookbook = begin
|
21
21
|
Berkshelf::CachedCookbook.from_path(entry_path)
|
22
|
-
|
23
|
-
|
22
|
+
rescue IOError
|
23
|
+
next # It wasn't a cookbook.
|
24
24
|
end
|
25
25
|
cookbooks << Berkshelf::APIClient::RemoteCookbook.new(
|
26
26
|
cookbook.cookbook_name,
|
data/lib/berkshelf/lockfile.rb
CHANGED
@@ -515,9 +515,9 @@ module Berkshelf
|
|
515
515
|
# useful data structure.
|
516
516
|
class LockfileParser
|
517
517
|
NAME_VERSION = '(?! )(.*?)(?: \(([^-]*)(?:-(.*))?\))?'.freeze
|
518
|
-
DEPENDENCY_PATTERN = /^ {2}#{NAME_VERSION}
|
519
|
-
DEPENDENCIES_PATTERN = /^ {4}#{NAME_VERSION}
|
520
|
-
OPTION_PATTERN = /^ {4}(.+)\: (.+)
|
518
|
+
DEPENDENCY_PATTERN = /^ {2}#{NAME_VERSION}$/.freeze
|
519
|
+
DEPENDENCIES_PATTERN = /^ {4}#{NAME_VERSION}$/.freeze
|
520
|
+
OPTION_PATTERN = /^ {4}(.+)\: (.+)/.freeze
|
521
521
|
|
522
522
|
# Create a new lockfile parser.
|
523
523
|
#
|
data/lib/berkshelf/uploader.rb
CHANGED
@@ -16,10 +16,10 @@ module Berkshelf
|
|
16
16
|
opts = args.last.respond_to?(:to_hash) ? args.pop.to_hash.each_with_object({}) { |(k, v), m| m[k.to_sym] = v } : {}
|
17
17
|
|
18
18
|
@options = {
|
19
|
-
force:
|
20
|
-
freeze:
|
19
|
+
force: false,
|
20
|
+
freeze: true,
|
21
21
|
halt_on_frozen: false,
|
22
|
-
validate:
|
22
|
+
validate: true,
|
23
23
|
}.merge(opts)
|
24
24
|
|
25
25
|
@names = Array(args).flatten
|
data/lib/berkshelf/version.rb
CHANGED
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: 7.0.
|
4
|
+
version: 7.0.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jamie Winsor
|
@@ -12,22 +12,28 @@ authors:
|
|
12
12
|
autorequire:
|
13
13
|
bindir: bin
|
14
14
|
cert_chain: []
|
15
|
-
date:
|
15
|
+
date: 2019-03-18 00:00:00.000000000 Z
|
16
16
|
dependencies:
|
17
17
|
- !ruby/object:Gem::Dependency
|
18
18
|
name: mixlib-shellout
|
19
19
|
requirement: !ruby/object:Gem::Requirement
|
20
20
|
requirements:
|
21
|
-
- - "
|
21
|
+
- - ">="
|
22
22
|
- !ruby/object:Gem::Version
|
23
23
|
version: '2.0'
|
24
|
+
- - "<"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '4.0'
|
24
27
|
type: :runtime
|
25
28
|
prerelease: false
|
26
29
|
version_requirements: !ruby/object:Gem::Requirement
|
27
30
|
requirements:
|
28
|
-
- - "
|
31
|
+
- - ">="
|
29
32
|
- !ruby/object:Gem::Version
|
30
33
|
version: '2.0'
|
34
|
+
- - "<"
|
35
|
+
- !ruby/object:Gem::Version
|
36
|
+
version: '4.0'
|
31
37
|
- !ruby/object:Gem::Dependency
|
32
38
|
name: cleanroom
|
33
39
|
requirement: !ruby/object:Gem::Requirement
|
@@ -60,16 +66,22 @@ dependencies:
|
|
60
66
|
name: retryable
|
61
67
|
requirement: !ruby/object:Gem::Requirement
|
62
68
|
requirements:
|
63
|
-
- - "
|
69
|
+
- - ">="
|
64
70
|
- !ruby/object:Gem::Version
|
65
71
|
version: '2.0'
|
72
|
+
- - "<"
|
73
|
+
- !ruby/object:Gem::Version
|
74
|
+
version: '4.0'
|
66
75
|
type: :runtime
|
67
76
|
prerelease: false
|
68
77
|
version_requirements: !ruby/object:Gem::Requirement
|
69
78
|
requirements:
|
70
|
-
- - "
|
79
|
+
- - ">="
|
71
80
|
- !ruby/object:Gem::Version
|
72
81
|
version: '2.0'
|
82
|
+
- - "<"
|
83
|
+
- !ruby/object:Gem::Version
|
84
|
+
version: '4.0'
|
73
85
|
- !ruby/object:Gem::Dependency
|
74
86
|
name: solve
|
75
87
|
requirement: !ruby/object:Gem::Requirement
|
@@ -116,16 +128,22 @@ dependencies:
|
|
116
128
|
name: mixlib-archive
|
117
129
|
requirement: !ruby/object:Gem::Requirement
|
118
130
|
requirements:
|
119
|
-
- - "
|
131
|
+
- - ">="
|
120
132
|
- !ruby/object:Gem::Version
|
121
133
|
version: '0.4'
|
134
|
+
- - "<"
|
135
|
+
- !ruby/object:Gem::Version
|
136
|
+
version: '2.0'
|
122
137
|
type: :runtime
|
123
138
|
prerelease: false
|
124
139
|
version_requirements: !ruby/object:Gem::Requirement
|
125
140
|
requirements:
|
126
|
-
- - "
|
141
|
+
- - ">="
|
127
142
|
- !ruby/object:Gem::Version
|
128
143
|
version: '0.4'
|
144
|
+
- - "<"
|
145
|
+
- !ruby/object:Gem::Version
|
146
|
+
version: '2.0'
|
129
147
|
- !ruby/object:Gem::Dependency
|
130
148
|
name: concurrent-ruby
|
131
149
|
requirement: !ruby/object:Gem::Requirement
|
@@ -182,7 +200,7 @@ dependencies:
|
|
182
200
|
- - ">="
|
183
201
|
- !ruby/object:Gem::Version
|
184
202
|
version: 2.2.5
|
185
|
-
description: Manages a
|
203
|
+
description: Manages a Chef cookbook's dependencies
|
186
204
|
email:
|
187
205
|
- jamie@vialstudios.com
|
188
206
|
- jkiehl@riotgames.com
|
@@ -194,60 +212,11 @@ executables:
|
|
194
212
|
extensions: []
|
195
213
|
extra_rdoc_files: []
|
196
214
|
files:
|
197
|
-
- ".github/lock.yml"
|
198
|
-
- ".gitignore"
|
199
|
-
- ".rubocop.yml"
|
200
|
-
- ".travis.yml"
|
201
|
-
- CHANGELOG.legacy.md
|
202
|
-
- CHANGELOG.md
|
203
|
-
- CONTRIBUTING.md
|
204
215
|
- Gemfile
|
205
|
-
- Gemfile.lock
|
206
216
|
- LICENSE
|
207
|
-
- PLUGINS.md
|
208
|
-
- README.md
|
209
217
|
- Rakefile
|
210
|
-
- Thorfile
|
211
|
-
- appveyor.yml
|
212
218
|
- berkshelf.gemspec
|
213
219
|
- bin/berks
|
214
|
-
- docs/berkshelf_for_newcomers.md
|
215
|
-
- features/artifactory.feature
|
216
|
-
- features/berksfile.feature
|
217
|
-
- features/commands/apply.feature
|
218
|
-
- features/commands/contingent.feature
|
219
|
-
- features/commands/info.feature
|
220
|
-
- features/commands/install.feature
|
221
|
-
- features/commands/list.feature
|
222
|
-
- features/commands/outdated.feature
|
223
|
-
- features/commands/package.feature
|
224
|
-
- features/commands/search.feature
|
225
|
-
- features/commands/shelf/list.feature
|
226
|
-
- features/commands/shelf/show.feature
|
227
|
-
- features/commands/shelf/uninstall.feature
|
228
|
-
- features/commands/show.feature
|
229
|
-
- features/commands/update.feature
|
230
|
-
- features/commands/upload.feature
|
231
|
-
- features/commands/vendor.feature
|
232
|
-
- features/commands/verify.feature
|
233
|
-
- features/commands/viz.feature
|
234
|
-
- features/community_site.feature
|
235
|
-
- features/help.feature
|
236
|
-
- features/json_formatter.feature
|
237
|
-
- features/lifecycle.feature
|
238
|
-
- features/lockfile.feature
|
239
|
-
- features/step_definitions/berksfile_steps.rb
|
240
|
-
- features/step_definitions/chef/config_steps.rb
|
241
|
-
- features/step_definitions/chef_server_steps.rb
|
242
|
-
- features/step_definitions/cli_steps.rb
|
243
|
-
- features/step_definitions/config_steps.rb
|
244
|
-
- features/step_definitions/environment_steps.rb
|
245
|
-
- features/step_definitions/filesystem_steps.rb
|
246
|
-
- features/step_definitions/gem_steps.rb
|
247
|
-
- features/step_definitions/json_steps.rb
|
248
|
-
- features/step_definitions/utility_steps.rb
|
249
|
-
- features/support/aruba.rb
|
250
|
-
- features/support/env.rb
|
251
220
|
- lib/berkshelf.rb
|
252
221
|
- lib/berkshelf/api-client.rb
|
253
222
|
- lib/berkshelf/api_client.rb
|
@@ -326,8 +295,6 @@ files:
|
|
326
295
|
- spec/fixtures/cookbooks/example_cookbook-0.5.0/README.md
|
327
296
|
- spec/fixtures/cookbooks/example_cookbook-0.5.0/metadata.rb
|
328
297
|
- spec/fixtures/cookbooks/example_cookbook-0.5.0/recipes/default.rb
|
329
|
-
- spec/fixtures/cookbooks/example_cookbook/.gitignore
|
330
|
-
- spec/fixtures/cookbooks/example_cookbook/.kitchen.yml
|
331
298
|
- spec/fixtures/cookbooks/example_cookbook/Berksfile
|
332
299
|
- spec/fixtures/cookbooks/example_cookbook/Berksfile.lock
|
333
300
|
- spec/fixtures/cookbooks/example_cookbook/README.md
|
@@ -388,9 +355,9 @@ files:
|
|
388
355
|
- spec/unit/berkshelf/validator_spec.rb
|
389
356
|
- spec/unit/berkshelf/visualizer_spec.rb
|
390
357
|
- spec/unit/berkshelf_spec.rb
|
391
|
-
homepage:
|
358
|
+
homepage: https://docs.chef.io/berkshelf.html
|
392
359
|
licenses:
|
393
|
-
- Apache
|
360
|
+
- Apache-2.0
|
394
361
|
metadata: {}
|
395
362
|
post_install_message:
|
396
363
|
rdoc_options: []
|
@@ -407,129 +374,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
407
374
|
- !ruby/object:Gem::Version
|
408
375
|
version: 2.0.0
|
409
376
|
requirements: []
|
410
|
-
|
411
|
-
rubygems_version: 2.7.6
|
377
|
+
rubygems_version: 3.0.3
|
412
378
|
signing_key:
|
413
379
|
specification_version: 4
|
414
|
-
summary: Manages a
|
415
|
-
test_files:
|
416
|
-
- features/artifactory.feature
|
417
|
-
- features/berksfile.feature
|
418
|
-
- features/commands/apply.feature
|
419
|
-
- features/commands/contingent.feature
|
420
|
-
- features/commands/info.feature
|
421
|
-
- features/commands/install.feature
|
422
|
-
- features/commands/list.feature
|
423
|
-
- features/commands/outdated.feature
|
424
|
-
- features/commands/package.feature
|
425
|
-
- features/commands/search.feature
|
426
|
-
- features/commands/shelf/list.feature
|
427
|
-
- features/commands/shelf/show.feature
|
428
|
-
- features/commands/shelf/uninstall.feature
|
429
|
-
- features/commands/show.feature
|
430
|
-
- features/commands/update.feature
|
431
|
-
- features/commands/upload.feature
|
432
|
-
- features/commands/vendor.feature
|
433
|
-
- features/commands/verify.feature
|
434
|
-
- features/commands/viz.feature
|
435
|
-
- features/community_site.feature
|
436
|
-
- features/help.feature
|
437
|
-
- features/json_formatter.feature
|
438
|
-
- features/lifecycle.feature
|
439
|
-
- features/lockfile.feature
|
440
|
-
- features/step_definitions/berksfile_steps.rb
|
441
|
-
- features/step_definitions/chef/config_steps.rb
|
442
|
-
- features/step_definitions/chef_server_steps.rb
|
443
|
-
- features/step_definitions/cli_steps.rb
|
444
|
-
- features/step_definitions/config_steps.rb
|
445
|
-
- features/step_definitions/environment_steps.rb
|
446
|
-
- features/step_definitions/filesystem_steps.rb
|
447
|
-
- features/step_definitions/gem_steps.rb
|
448
|
-
- features/step_definitions/json_steps.rb
|
449
|
-
- features/step_definitions/utility_steps.rb
|
450
|
-
- features/support/aruba.rb
|
451
|
-
- features/support/env.rb
|
452
|
-
- spec/config/berkshelf.pem
|
453
|
-
- spec/config/knife.rb
|
454
|
-
- spec/config/validator.pem
|
455
|
-
- spec/data/trusted_certs/example.crt
|
456
|
-
- spec/fixtures/Berksfile
|
457
|
-
- spec/fixtures/berksfiles/default
|
458
|
-
- spec/fixtures/complex-cookbook-path/cookbooks/app/metadata.rb
|
459
|
-
- spec/fixtures/complex-cookbook-path/cookbooks/jenkins-config/metadata.rb
|
460
|
-
- spec/fixtures/complex-cookbook-path/cookbooks/jenkins/metadata.rb
|
461
|
-
- spec/fixtures/cookbook-path-uploader/apt-2.3.6/metadata.rb
|
462
|
-
- spec/fixtures/cookbook-path-uploader/build-essential-1.4.2/metadata.rb
|
463
|
-
- spec/fixtures/cookbook-path-uploader/jenkins-2.0.3/metadata.rb
|
464
|
-
- spec/fixtures/cookbook-path-uploader/jenkins-config-0.1.0/metadata.rb
|
465
|
-
- spec/fixtures/cookbook-path-uploader/runit-1.5.8/metadata.rb
|
466
|
-
- spec/fixtures/cookbook-path-uploader/yum-3.0.6/metadata.rb
|
467
|
-
- spec/fixtures/cookbook-path-uploader/yum-epel-0.2.0/metadata.rb
|
468
|
-
- spec/fixtures/cookbook-path/jenkins-config/metadata.rb
|
469
|
-
- spec/fixtures/cookbook-store/jenkins-2.0.3/metadata.rb
|
470
|
-
- spec/fixtures/cookbook-store/jenkins-2.0.4/metadata.rb
|
471
|
-
- spec/fixtures/cookbooks/example_cookbook-0.5.0/README.md
|
472
|
-
- spec/fixtures/cookbooks/example_cookbook-0.5.0/metadata.rb
|
473
|
-
- spec/fixtures/cookbooks/example_cookbook-0.5.0/recipes/default.rb
|
474
|
-
- spec/fixtures/cookbooks/example_cookbook/.gitignore
|
475
|
-
- spec/fixtures/cookbooks/example_cookbook/.kitchen.yml
|
476
|
-
- spec/fixtures/cookbooks/example_cookbook/Berksfile
|
477
|
-
- spec/fixtures/cookbooks/example_cookbook/Berksfile.lock
|
478
|
-
- spec/fixtures/cookbooks/example_cookbook/README.md
|
479
|
-
- spec/fixtures/cookbooks/example_cookbook/metadata.rb
|
480
|
-
- spec/fixtures/cookbooks/example_cookbook/recipes/default.rb
|
481
|
-
- spec/fixtures/lockfiles/2.0.lock
|
482
|
-
- spec/fixtures/lockfiles/blank.lock
|
483
|
-
- spec/fixtures/lockfiles/default.lock
|
484
|
-
- spec/fixtures/lockfiles/empty.lock
|
485
|
-
- spec/fixtures/lockfiles/orphans.lock
|
486
|
-
- spec/spec_helper.rb
|
487
|
-
- spec/support/chef_api.rb
|
488
|
-
- spec/support/chef_server.rb
|
489
|
-
- spec/support/git.rb
|
490
|
-
- spec/support/kitchen.rb
|
491
|
-
- spec/support/matchers/file_system_matchers.rb
|
492
|
-
- spec/support/matchers/filepath_matchers.rb
|
493
|
-
- spec/support/path_helpers.rb
|
494
|
-
- spec/support/shared_examples/formatter.rb
|
495
|
-
- spec/unit/berkshelf/berksfile_spec.rb
|
496
|
-
- spec/unit/berkshelf/berkshelf/api_client/connection_spec.rb
|
497
|
-
- spec/unit/berkshelf/berkshelf/api_client/remote_cookbook_spec.rb
|
498
|
-
- spec/unit/berkshelf/berkshelf/api_client_spec.rb
|
499
|
-
- spec/unit/berkshelf/cached_cookbook_spec.rb
|
500
|
-
- spec/unit/berkshelf/chef_repo_universe_spec.rb
|
501
|
-
- spec/unit/berkshelf/cli_spec.rb
|
502
|
-
- spec/unit/berkshelf/community_rest_spec.rb
|
503
|
-
- spec/unit/berkshelf/config_spec.rb
|
504
|
-
- spec/unit/berkshelf/cookbook_store_spec.rb
|
505
|
-
- spec/unit/berkshelf/core_ext/file_utils_spec.rb
|
506
|
-
- spec/unit/berkshelf/core_ext/pathname_spec.rb
|
507
|
-
- spec/unit/berkshelf/dependency_spec.rb
|
508
|
-
- spec/unit/berkshelf/downloader_spec.rb
|
509
|
-
- spec/unit/berkshelf/errors_spec.rb
|
510
|
-
- spec/unit/berkshelf/file_syncer_spec.rb
|
511
|
-
- spec/unit/berkshelf/formatters/base_spec.rb
|
512
|
-
- spec/unit/berkshelf/formatters/human_spec.rb
|
513
|
-
- spec/unit/berkshelf/formatters/json_spec.rb
|
514
|
-
- spec/unit/berkshelf/formatters/null_spec.rb
|
515
|
-
- spec/unit/berkshelf/installer_spec.rb
|
516
|
-
- spec/unit/berkshelf/location_spec.rb
|
517
|
-
- spec/unit/berkshelf/locations/base_spec.rb
|
518
|
-
- spec/unit/berkshelf/locations/git_spec.rb
|
519
|
-
- spec/unit/berkshelf/locations/path_spec.rb
|
520
|
-
- spec/unit/berkshelf/lockfile_parser_spec.rb
|
521
|
-
- spec/unit/berkshelf/lockfile_spec.rb
|
522
|
-
- spec/unit/berkshelf/logger_spec.rb
|
523
|
-
- spec/unit/berkshelf/mixin/logging_spec.rb
|
524
|
-
- spec/unit/berkshelf/packager_spec.rb
|
525
|
-
- spec/unit/berkshelf/resolver/graph_spec.rb
|
526
|
-
- spec/unit/berkshelf/resolver_spec.rb
|
527
|
-
- spec/unit/berkshelf/ridley_compat_spec.rb
|
528
|
-
- spec/unit/berkshelf/shell_spec.rb
|
529
|
-
- spec/unit/berkshelf/source_spec.rb
|
530
|
-
- spec/unit/berkshelf/source_uri_spec.rb
|
531
|
-
- spec/unit/berkshelf/ssl_policies_spec.rb
|
532
|
-
- spec/unit/berkshelf/uploader_spec.rb
|
533
|
-
- spec/unit/berkshelf/validator_spec.rb
|
534
|
-
- spec/unit/berkshelf/visualizer_spec.rb
|
535
|
-
- spec/unit/berkshelf_spec.rb
|
380
|
+
summary: Manages a Chef cookbook's dependencies
|
381
|
+
test_files: []
|