chef-dk 0.15.9 → 0.15.15
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +26 -24
- data/README.md +5 -1
- data/acceptance/Gemfile.lock +20 -18
- data/lib/chef-dk/command/generator_commands/base.rb +148 -148
- data/lib/chef-dk/command/generator_commands/build_cookbook.rb +5 -0
- data/lib/chef-dk/command/generator_commands/cookbook.rb +3 -0
- data/lib/chef-dk/skeletons/code_generator/files/default/serverspec_spec_helper.rb +8 -8
- data/lib/chef-dk/skeletons/code_generator/recipes/app.rb +97 -97
- data/lib/chef-dk/skeletons/code_generator/recipes/build_cookbook.rb +64 -0
- data/lib/chef-dk/skeletons/code_generator/recipes/cookbook.rb +15 -1
- data/lib/chef-dk/skeletons/code_generator/templates/default/serverspec_default_spec.rb.erb +9 -9
- data/lib/chef-dk/version.rb +1 -1
- data/omnibus_overrides.rb +1 -1
- data/spec/shared/custom_generator_cookbook.rb +7 -1
- data/spec/shared/setup_git_committer_config.rb +54 -0
- data/spec/unit/command/generator_commands/app_spec.rb +169 -169
- data/spec/unit/command/generator_commands/build_cookbook_spec.rb +39 -5
- data/spec/unit/command/generator_commands/cookbook_spec.rb +22 -14
- data/version_policy.rb +1 -1
- metadata +4 -2
data/version_policy.rb
CHANGED
@@ -54,7 +54,7 @@ OMNIBUS_OVERRIDES = {
|
|
54
54
|
# in Artifactory because in the future we will only be building Delivery CLI
|
55
55
|
# from the ChefDK. We cannot look at the Github tags because those are committed
|
56
56
|
# in the Build phase, and we only want to send customers Delivered changes.
|
57
|
-
"delivery-cli" => "0.0.
|
57
|
+
"delivery-cli" => "0.0.23",
|
58
58
|
}
|
59
59
|
|
60
60
|
#
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: chef-dk
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.15.
|
4
|
+
version: 0.15.15
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Daniel DeLeo
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2016-06-
|
13
|
+
date: 2016-06-20 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: mixlib-cli
|
@@ -433,6 +433,7 @@ files:
|
|
433
433
|
- spec/shared/command_with_ui_object.rb
|
434
434
|
- spec/shared/custom_generator_cookbook.rb
|
435
435
|
- spec/shared/fixture_cookbook_checksums.rb
|
436
|
+
- spec/shared/setup_git_committer_config.rb
|
436
437
|
- spec/shared/setup_git_cookbooks.rb
|
437
438
|
- spec/spec_helper.rb
|
438
439
|
- spec/test_helpers.rb
|
@@ -654,6 +655,7 @@ test_files:
|
|
654
655
|
- spec/shared/command_with_ui_object.rb
|
655
656
|
- spec/shared/custom_generator_cookbook.rb
|
656
657
|
- spec/shared/fixture_cookbook_checksums.rb
|
658
|
+
- spec/shared/setup_git_committer_config.rb
|
657
659
|
- spec/shared/setup_git_cookbooks.rb
|
658
660
|
- spec/spec_helper.rb
|
659
661
|
- spec/test_helpers.rb
|