chef-dk 1.2.22 → 1.3.40
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +8 -12
- data/Gemfile.lock +120 -116
- data/README.md +4 -3
- data/Rakefile +54 -0
- data/acceptance/Gemfile.lock +36 -47
- data/bin/chef +1 -1
- data/chef-dk.gemspec +9 -9
- data/lib/chef-dk/authenticated_http.rb +6 -7
- data/lib/chef-dk/builtin_commands.rb +3 -4
- data/lib/chef-dk/chef_runner.rb +7 -8
- data/lib/chef-dk/cli.rb +11 -11
- data/lib/chef-dk/command/base.rb +4 -4
- data/lib/chef-dk/command/clean_policy_cookbooks.rb +4 -5
- data/lib/chef-dk/command/clean_policy_revisions.rb +4 -6
- data/lib/chef-dk/command/delete_policy.rb +4 -6
- data/lib/chef-dk/command/delete_policy_group.rb +6 -8
- data/lib/chef-dk/command/diff.rb +9 -10
- data/lib/chef-dk/command/env.rb +26 -27
- data/lib/chef-dk/command/exec.rb +5 -6
- data/lib/chef-dk/command/export.rb +8 -10
- data/lib/chef-dk/command/gem.rb +5 -5
- data/lib/chef-dk/command/generate.rb +19 -19
- data/lib/chef-dk/command/generator_commands.rb +8 -8
- data/lib/chef-dk/command/generator_commands/app.rb +2 -3
- data/lib/chef-dk/command/generator_commands/attribute.rb +2 -3
- data/lib/chef-dk/command/generator_commands/base.rb +13 -13
- data/lib/chef-dk/command/generator_commands/build_cookbook.rb +2 -2
- data/lib/chef-dk/command/generator_commands/chef_exts/generator_desc_resource.rb +2 -2
- data/lib/chef-dk/command/generator_commands/chef_exts/quieter_doc_formatter.rb +1 -2
- data/lib/chef-dk/command/generator_commands/chef_exts/recipe_dsl_ext.rb +1 -2
- data/lib/chef-dk/command/generator_commands/cookbook.rb +2 -2
- data/lib/chef-dk/command/generator_commands/cookbook_code_file.rb +3 -3
- data/lib/chef-dk/command/generator_commands/cookbook_file.rb +2 -2
- data/lib/chef-dk/command/generator_commands/generator_generator.rb +4 -7
- data/lib/chef-dk/command/generator_commands/lwrp.rb +2 -2
- data/lib/chef-dk/command/generator_commands/policyfile.rb +2 -3
- data/lib/chef-dk/command/generator_commands/recipe.rb +2 -2
- data/lib/chef-dk/command/generator_commands/repo.rb +1 -3
- data/lib/chef-dk/command/generator_commands/template.rb +2 -2
- data/lib/chef-dk/command/install.rb +4 -5
- data/lib/chef-dk/command/provision.rb +12 -14
- data/lib/chef-dk/command/push.rb +5 -6
- data/lib/chef-dk/command/push_archive.rb +4 -5
- data/lib/chef-dk/command/shell_init.rb +15 -16
- data/lib/chef-dk/command/show_policy.rb +5 -7
- data/lib/chef-dk/command/undelete.rb +6 -7
- data/lib/chef-dk/command/update.rb +5 -6
- data/lib/chef-dk/command/verify.rb +30 -31
- data/lib/chef-dk/commands_map.rb +1 -3
- data/lib/chef-dk/component_test.rb +13 -13
- data/lib/chef-dk/configurable.rb +2 -2
- data/lib/chef-dk/cookbook_metadata.rb +2 -2
- data/lib/chef-dk/cookbook_omnifetch.rb +7 -8
- data/lib/chef-dk/cookbook_profiler/git.rb +8 -8
- data/lib/chef-dk/cookbook_profiler/identifiers.rb +7 -7
- data/lib/chef-dk/cookbook_profiler/null_scm.rb +0 -1
- data/lib/chef-dk/exceptions.rb +1 -1
- data/lib/chef-dk/generator.rb +9 -7
- data/lib/chef-dk/helpers.rb +15 -15
- data/lib/chef-dk/pager.rb +2 -3
- data/lib/chef-dk/policyfile/chef_repo_cookbook_source.rb +4 -4
- data/lib/chef-dk/policyfile/chef_server_cookbook_source.rb +6 -6
- data/lib/chef-dk/policyfile/community_cookbook_source.rb +4 -5
- data/lib/chef-dk/policyfile/comparison_base.rb +3 -4
- data/lib/chef-dk/policyfile/cookbook_location_specification.rb +6 -6
- data/lib/chef-dk/policyfile/cookbook_locks.rb +11 -11
- data/lib/chef-dk/policyfile/cookbook_sources.rb +5 -5
- data/lib/chef-dk/policyfile/delivery_supermarket_source.rb +8 -9
- data/lib/chef-dk/policyfile/differ.rb +7 -10
- data/lib/chef-dk/policyfile/dsl.rb +10 -11
- data/lib/chef-dk/policyfile/lister.rb +3 -6
- data/lib/chef-dk/policyfile/null_cookbook_source.rb +3 -3
- data/lib/chef-dk/policyfile/read_cookbook_for_compat_mode_upload.rb +3 -3
- data/lib/chef-dk/policyfile/reports/install.rb +3 -4
- data/lib/chef-dk/policyfile/reports/table_printer.rb +0 -1
- data/lib/chef-dk/policyfile/reports/upload.rb +4 -4
- data/lib/chef-dk/policyfile/solution_dependencies.rb +22 -22
- data/lib/chef-dk/policyfile/source_uri.rb +2 -2
- data/lib/chef-dk/policyfile/storage_config.rb +4 -5
- data/lib/chef-dk/policyfile/undo_record.rb +6 -9
- data/lib/chef-dk/policyfile/undo_stack.rb +5 -7
- data/lib/chef-dk/policyfile/uploader.rb +8 -8
- data/lib/chef-dk/policyfile_compiler.rb +16 -20
- data/lib/chef-dk/policyfile_lock.rb +10 -11
- data/lib/chef-dk/policyfile_services/clean_policies.rb +3 -3
- data/lib/chef-dk/policyfile_services/clean_policy_cookbooks.rb +3 -5
- data/lib/chef-dk/policyfile_services/export_repo.rb +13 -14
- data/lib/chef-dk/policyfile_services/install.rb +6 -6
- data/lib/chef-dk/policyfile_services/push.rb +6 -8
- data/lib/chef-dk/policyfile_services/push_archive.rb +6 -10
- data/lib/chef-dk/policyfile_services/rm_policy.rb +4 -5
- data/lib/chef-dk/policyfile_services/rm_policy_group.rb +4 -5
- data/lib/chef-dk/policyfile_services/show_policy.rb +5 -6
- data/lib/chef-dk/policyfile_services/undelete.rb +3 -3
- data/lib/chef-dk/policyfile_services/update_attributes.rb +4 -6
- data/lib/chef-dk/service_exception_inspectors.rb +2 -3
- data/lib/chef-dk/service_exception_inspectors/base.rb +0 -1
- data/lib/chef-dk/service_exception_inspectors/http.rb +1 -3
- data/lib/chef-dk/service_exceptions.rb +1 -2
- data/lib/chef-dk/shell_out.rb +1 -1
- data/lib/chef-dk/skeletons/code_generator/files/default/build_cookbook/.kitchen.yml +2 -2
- data/lib/chef-dk/skeletons/code_generator/files/default/build_cookbook/README.md +2 -2
- data/lib/chef-dk/skeletons/code_generator/files/default/build_cookbook/test-fixture-recipe.rb +1 -0
- data/lib/chef-dk/skeletons/code_generator/files/default/repo/cookbooks/example/attributes/default.rb +1 -1
- data/lib/chef-dk/skeletons/code_generator/files/default/repo/cookbooks/example/recipes/default.rb +1 -1
- data/lib/chef-dk/skeletons/code_generator/metadata.rb +0 -1
- data/lib/chef-dk/skeletons/code_generator/recipes/app.rb +6 -6
- data/lib/chef-dk/skeletons/code_generator/recipes/attribute.rb +3 -3
- data/lib/chef-dk/skeletons/code_generator/recipes/build_cookbook.rb +43 -39
- data/lib/chef-dk/skeletons/code_generator/recipes/cookbook.rb +31 -22
- data/lib/chef-dk/skeletons/code_generator/recipes/cookbook_file.rb +5 -5
- data/lib/chef-dk/skeletons/code_generator/recipes/lwrp.rb +4 -4
- data/lib/chef-dk/skeletons/code_generator/recipes/policyfile.rb +1 -1
- data/lib/chef-dk/skeletons/code_generator/recipes/recipe.rb +8 -8
- data/lib/chef-dk/skeletons/code_generator/recipes/repo.rb +15 -15
- data/lib/chef-dk/skeletons/code_generator/recipes/template.rb +6 -6
- data/lib/chef-dk/skeletons/code_generator/templates/default/build_cookbook/Berksfile.erb +0 -2
- data/lib/chef-dk/skeletons/code_generator/templates/default/build_cookbook/metadata.rb.erb +1 -0
- data/lib/chef-dk/skeletons/code_generator/templates/default/inspec_default_test.rb.erb +4 -4
- data/lib/chef-dk/skeletons/code_generator/templates/default/kitchen.yml.erb +1 -1
- data/lib/chef-dk/skeletons/code_generator/templates/default/kitchen_policyfile.yml.erb +1 -1
- data/lib/chef-dk/skeletons/code_generator/templates/default/metadata.rb.erb +4 -3
- data/lib/chef-dk/skeletons/code_generator/templates/default/recipe_spec.rb.erb +4 -2
- data/lib/chef-dk/ui.rb +0 -1
- data/lib/chef-dk/version.rb +1 -1
- data/lib/kitchen/provisioner/policyfile_zero.rb +7 -7
- data/omnibus_overrides.rb +3 -3
- data/spec/shared/a_file_generator.rb +3 -3
- data/spec/shared/custom_generator_cookbook.rb +6 -6
- data/spec/shared/fixture_cookbook_checksums.rb +2 -3
- data/spec/shared/setup_git_committer_config.rb +1 -1
- data/spec/shared/setup_git_cookbooks.rb +2 -2
- data/spec/spec_helper.rb +5 -5
- data/spec/test_helpers.rb +2 -2
- data/spec/unit/chef_runner_spec.rb +5 -7
- data/spec/unit/cli_spec.rb +36 -37
- data/spec/unit/command/base_spec.rb +4 -5
- data/spec/unit/command/clean_policy_cookbooks_spec.rb +8 -9
- data/spec/unit/command/clean_policy_revisions_spec.rb +8 -9
- data/spec/unit/command/delete_policy_group_spec.rb +11 -12
- data/spec/unit/command/delete_policy_spec.rb +11 -12
- data/spec/unit/command/diff_spec.rb +5 -6
- data/spec/unit/command/env_spec.rb +5 -5
- data/spec/unit/command/exec_spec.rb +18 -19
- data/spec/unit/command/export_spec.rb +5 -6
- data/spec/unit/command/generate_spec.rb +10 -10
- data/spec/unit/command/generator_commands/app_spec.rb +6 -6
- data/spec/unit/command/generator_commands/attribute_spec.rb +3 -4
- data/spec/unit/command/generator_commands/base_spec.rb +46 -46
- data/spec/unit/command/generator_commands/build_cookbook_spec.rb +50 -16
- data/spec/unit/command/generator_commands/chef_exts/generator_desc_resource_spec.rb +9 -9
- data/spec/unit/command/generator_commands/chef_exts/recipe_dsl_ext_spec.rb +16 -16
- data/spec/unit/command/generator_commands/cookbook_file_spec.rb +3 -4
- data/spec/unit/command/generator_commands/cookbook_spec.rb +23 -26
- data/spec/unit/command/generator_commands/generator_generator_spec.rb +4 -6
- data/spec/unit/command/generator_commands/lwrp_spec.rb +3 -4
- data/spec/unit/command/generator_commands/policyfile_spec.rb +3 -5
- data/spec/unit/command/generator_commands/recipe_spec.rb +4 -4
- data/spec/unit/command/generator_commands/repo_spec.rb +11 -11
- data/spec/unit/command/generator_commands/template_spec.rb +3 -4
- data/spec/unit/command/install_spec.rb +6 -6
- data/spec/unit/command/provision_spec.rb +27 -30
- data/spec/unit/command/push_archive_spec.rb +3 -3
- data/spec/unit/command/push_spec.rb +5 -6
- data/spec/unit/command/shell_init_spec.rb +17 -19
- data/spec/unit/command/show_policy_spec.rb +11 -12
- data/spec/unit/command/undelete_spec.rb +12 -14
- data/spec/unit/command/update_spec.rb +8 -8
- data/spec/unit/command/verify_spec.rb +10 -10
- data/spec/unit/commands_map_spec.rb +4 -4
- data/spec/unit/component_test_spec.rb +3 -3
- data/spec/unit/configurable_spec.rb +7 -7
- data/spec/unit/cookbook_metadata_spec.rb +5 -7
- data/spec/unit/cookbook_profiler/git_spec.rb +6 -7
- data/spec/unit/cookbook_profiler/identifiers_spec.rb +5 -7
- data/spec/unit/fixtures/command/cli_test_command.rb +2 -2
- data/spec/unit/fixtures/configurable/test_configurable.rb +1 -1
- data/spec/unit/fixtures/cookbooks_api/update_fixtures.rb +13 -16
- data/spec/unit/fixtures/eg_omnibus_dir/valid/embedded/apps/berkshelf/verify_me +1 -1
- data/spec/unit/gemfile_util_spec.rb +4 -4
- data/spec/unit/generator_spec.rb +10 -10
- data/spec/unit/helpers_spec.rb +31 -31
- data/spec/unit/pager_spec.rb +5 -7
- data/spec/unit/policyfile/chef_repo_cookbook_source_spec.rb +11 -11
- data/spec/unit/policyfile/chef_server_cookbook_source_spec.rb +13 -13
- data/spec/unit/policyfile/community_cookbook_source_spec.rb +3 -4
- data/spec/unit/policyfile/comparison_base_spec.rb +3 -6
- data/spec/unit/policyfile/cookbook_location_specification_spec.rb +3 -3
- data/spec/unit/policyfile/cookbook_locks_spec.rb +7 -9
- data/spec/unit/policyfile/delivery_supermarket_source_spec.rb +16 -17
- data/spec/unit/policyfile/differ_spec.rb +4 -5
- data/spec/unit/policyfile/lister_spec.rb +31 -35
- data/spec/unit/policyfile/null_cookbook_source_spec.rb +2 -3
- data/spec/unit/policyfile/read_cookbook_for_compat_mode_upload_spec.rb +3 -3
- data/spec/unit/policyfile/reports/install_spec.rb +4 -5
- data/spec/unit/policyfile/reports/upload_spec.rb +4 -6
- data/spec/unit/policyfile/solution_dependencies_spec.rb +13 -13
- data/spec/unit/policyfile/source_uri_spec.rb +5 -5
- data/spec/unit/policyfile/storage_config_spec.rb +3 -7
- data/spec/unit/policyfile/undo_record_spec.rb +21 -23
- data/spec/unit/policyfile/undo_stack_spec.rb +5 -6
- data/spec/unit/policyfile/uploader_spec.rb +73 -75
- data/spec/unit/policyfile_demands_spec.rb +93 -99
- data/spec/unit/policyfile_evaluation_spec.rb +14 -14
- data/spec/unit/policyfile_lock_build_spec.rb +64 -65
- data/spec/unit/policyfile_lock_install_spec.rb +5 -6
- data/spec/unit/policyfile_lock_serialization_spec.rb +14 -15
- data/spec/unit/policyfile_lock_validation_spec.rb +17 -20
- data/spec/unit/policyfile_services/clean_policies_spec.rb +16 -16
- data/spec/unit/policyfile_services/clean_policy_cookbooks_spec.rb +26 -29
- data/spec/unit/policyfile_services/export_repo_spec.rb +3 -6
- data/spec/unit/policyfile_services/install_spec.rb +5 -7
- data/spec/unit/policyfile_services/push_archive_spec.rb +4 -8
- data/spec/unit/policyfile_services/push_spec.rb +3 -3
- data/spec/unit/policyfile_services/rm_policy_group_spec.rb +16 -20
- data/spec/unit/policyfile_services/rm_policy_spec.rb +14 -17
- data/spec/unit/policyfile_services/show_policy_spec.rb +78 -80
- data/spec/unit/policyfile_services/undelete_spec.rb +5 -7
- data/spec/unit/policyfile_services/update_attributes_spec.rb +34 -35
- data/spec/unit/service_exception_inspectors/base_spec.rb +2 -4
- data/spec/unit/service_exception_inspectors/http_spec.rb +9 -11
- data/spec/unit/shell_out_spec.rb +2 -2
- data/spec/unit/tasks/helpers_spec.rb +2 -2
- data/tasks/bin/bundle-platform +1 -1
- data/tasks/bundle_util.rb +1 -1
- data/tasks/dependencies.rb +21 -7
- data/tasks/gemfile_util.rb +1 -1
- data/tasks/helpers.rb +2 -2
- data/tasks/version.rb +26 -1
- data/version_policy.rb +6 -6
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ed34435ea853be2cb950bcdbf8fe0d5bd0f2e651
|
4
|
+
data.tar.gz: b9bdd9a646a8965203b1923738a62ad9fefc5ba1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1142fb28fd05137bb141525607b087b9adf737dc29fd4ce836f42ee29caa17dae0e583367bd96ad7f551b5df1cf0fc5231af0bd4a9ede76143d28c0eefec3147
|
7
|
+
data.tar.gz: 2cefe5dce4a9104a4631ddf044e31beace05ae790dc08182f9ad49dd2c693eb2c89bae86924677dbfa90d2965d93cd16ed4468c6140e351d0dc80fc0fcb372cd
|
data/Gemfile
CHANGED
@@ -15,7 +15,7 @@
|
|
15
15
|
# limitations under the License.
|
16
16
|
#
|
17
17
|
|
18
|
-
source
|
18
|
+
source "https://rubygems.org"
|
19
19
|
|
20
20
|
# Note we do not use the gemspec DSL which restricts to the
|
21
21
|
# gemspec for the current platform and filters out other platforms
|
@@ -27,17 +27,16 @@ gem "chef-dk", path: "."
|
|
27
27
|
# EXPERIMENTAL: ALL gems specified here will be installed in chef-dk omnibus.
|
28
28
|
# This represents all gems that will be part of chef-dk.
|
29
29
|
|
30
|
-
# Ensure that we can always install rake, regardless of gem groups
|
31
|
-
# Including the travis group to address https://github.com/sickill/rainbow/issues/44
|
32
|
-
gem "rake", group: [ :omnibus_package, :development, :test, :travis ]
|
33
|
-
|
34
30
|
group(:omnibus_package, :development, :test) do
|
31
|
+
gem "rake"
|
35
32
|
gem "pry"
|
36
33
|
gem "rdoc"
|
37
34
|
gem "yard"
|
38
35
|
gem "dep_selector"
|
39
36
|
gem "guard"
|
40
37
|
gem "ruby-prof"
|
38
|
+
gem "cookstyle", ">= 1.3.0"
|
39
|
+
gem "foodcritic", ">= 9.0"
|
41
40
|
end
|
42
41
|
|
43
42
|
# All software we recognize needs to stay at the latest possible version. But
|
@@ -55,14 +54,13 @@ group(:omnibus_package) do
|
|
55
54
|
gem "chef-provisioning-vagrant", ">= 0.11.0"
|
56
55
|
gem "chef-vault"
|
57
56
|
# The chef version is pinned by "rake dependencies", which grabs the current version from omnibus.
|
58
|
-
gem "chef", github: "chef/chef", branch: "v12.
|
57
|
+
gem "chef", github: "chef/chef", branch: "v12.19.36"
|
59
58
|
gem "cheffish", ">= 4.0"
|
60
59
|
gem "chefspec"
|
61
60
|
gem "fauxhai"
|
62
|
-
gem "foodcritic", ">= 8.0"
|
63
61
|
gem "inspec", ">= 0.17.1"
|
64
62
|
gem "kitchen-ec2"
|
65
|
-
gem "kitchen-dokken", "
|
63
|
+
gem "kitchen-dokken", ">= 2.1.0"
|
66
64
|
gem "kitchen-inspec"
|
67
65
|
gem "kitchen-vagrant"
|
68
66
|
gem "knife-windows"
|
@@ -77,7 +75,7 @@ group(:omnibus_package) do
|
|
77
75
|
gem "mixlib-versioning"
|
78
76
|
gem "artifactory"
|
79
77
|
# The opscode-pushy-client version is pinned by "rake dependencies", which grabs the current version from omnibus.
|
80
|
-
gem "opscode-pushy-client", github: "chef/opscode-pushy-client", branch: "2.
|
78
|
+
gem "opscode-pushy-client", github: "chef/opscode-pushy-client", branch: "2.2.0"
|
81
79
|
gem "ffi-rzmq-core"
|
82
80
|
gem "knife-push"
|
83
81
|
|
@@ -90,7 +88,6 @@ group(:omnibus_package) do
|
|
90
88
|
gem "pry-stack_explorer"
|
91
89
|
gem "rb-readline"
|
92
90
|
gem "rubocop"
|
93
|
-
gem "cookstyle"
|
94
91
|
gem "winrm-fs"
|
95
92
|
gem "winrm-elevated"
|
96
93
|
gem "cucumber"
|
@@ -98,7 +95,6 @@ group(:omnibus_package) do
|
|
98
95
|
# TODO Pinning these for now because github_changelog_generator has a bunch
|
99
96
|
# of different versions across our products
|
100
97
|
gem "nokogiri", "~> 1.6.3"
|
101
|
-
gem "addressable", "~> 2.4.0"
|
102
98
|
end
|
103
99
|
|
104
100
|
# Everything except AIX and Windows
|
@@ -111,7 +107,7 @@ group(:changelog) do
|
|
111
107
|
end
|
112
108
|
|
113
109
|
# mixlib-install is used by two groups
|
114
|
-
gem
|
110
|
+
gem "mixlib-install", :group => [:changelog, :omnibus_package]
|
115
111
|
|
116
112
|
# TODO delete this when we figure out how to include the pushy windows dependencies
|
117
113
|
# correctly
|
data/Gemfile.lock
CHANGED
@@ -7,28 +7,28 @@ GIT
|
|
7
7
|
|
8
8
|
GIT
|
9
9
|
remote: git://github.com/chef/chef.git
|
10
|
-
revision:
|
11
|
-
branch: v12.
|
10
|
+
revision: 7b8ceacf4fe474587a485b5ad23713a5c0096145
|
11
|
+
branch: v12.19.36
|
12
12
|
specs:
|
13
|
-
chef (12.
|
13
|
+
chef (12.19.36)
|
14
14
|
addressable
|
15
15
|
bundler (>= 1.10)
|
16
|
-
chef-config (= 12.
|
16
|
+
chef-config (= 12.19.36)
|
17
17
|
chef-zero (>= 4.8)
|
18
18
|
diff-lcs (~> 1.2, >= 1.2.4)
|
19
19
|
erubis (~> 2.7)
|
20
20
|
ffi-yajl (~> 2.2)
|
21
21
|
highline (~> 1.6, >= 1.6.9)
|
22
22
|
iniparse (~> 1.4)
|
23
|
-
mixlib-archive (
|
23
|
+
mixlib-archive (~> 0.4)
|
24
24
|
mixlib-authentication (~> 1.4)
|
25
25
|
mixlib-cli (~> 1.7)
|
26
26
|
mixlib-log (~> 1.3)
|
27
27
|
mixlib-shellout (~> 2.0)
|
28
28
|
net-sftp (~> 2.1, >= 2.1.2)
|
29
|
-
net-ssh (>= 2.9, <
|
30
|
-
net-ssh-multi (~> 1.1)
|
31
|
-
ohai (>= 8.6.0.alpha.1, <
|
29
|
+
net-ssh (>= 2.9, < 5.0)
|
30
|
+
net-ssh-multi (~> 1.2, >= 1.2.1)
|
31
|
+
ohai (>= 8.6.0.alpha.1, < 13)
|
32
32
|
plist (~> 3.2)
|
33
33
|
proxifier (~> 1.0)
|
34
34
|
rspec-core (~> 3.5)
|
@@ -39,10 +39,10 @@ GIT
|
|
39
39
|
specinfra (~> 2.10)
|
40
40
|
syslog-logger (~> 1.6)
|
41
41
|
uuidtools (~> 2.1.5)
|
42
|
-
chef (12.
|
42
|
+
chef (12.19.36-universal-mingw32)
|
43
43
|
addressable
|
44
44
|
bundler (>= 1.10)
|
45
|
-
chef-config (= 12.
|
45
|
+
chef-config (= 12.19.36)
|
46
46
|
chef-zero (>= 4.8)
|
47
47
|
diff-lcs (~> 1.2, >= 1.2.4)
|
48
48
|
erubis (~> 2.7)
|
@@ -50,15 +50,15 @@ GIT
|
|
50
50
|
ffi-yajl (~> 2.2)
|
51
51
|
highline (~> 1.6, >= 1.6.9)
|
52
52
|
iniparse (~> 1.4)
|
53
|
-
mixlib-archive (
|
53
|
+
mixlib-archive (~> 0.4)
|
54
54
|
mixlib-authentication (~> 1.4)
|
55
55
|
mixlib-cli (~> 1.7)
|
56
56
|
mixlib-log (~> 1.3)
|
57
57
|
mixlib-shellout (~> 2.0)
|
58
58
|
net-sftp (~> 2.1, >= 2.1.2)
|
59
|
-
net-ssh (>= 2.9, <
|
60
|
-
net-ssh-multi (~> 1.1)
|
61
|
-
ohai (>= 8.6.0.alpha.1, <
|
59
|
+
net-ssh (>= 2.9, < 5.0)
|
60
|
+
net-ssh-multi (~> 1.2, >= 1.2.1)
|
61
|
+
ohai (>= 8.6.0.alpha.1, < 13)
|
62
62
|
plist (~> 3.2)
|
63
63
|
proxifier (~> 1.0)
|
64
64
|
rspec-core (~> 3.5)
|
@@ -79,7 +79,7 @@ GIT
|
|
79
79
|
win32-service (~> 0.8.7)
|
80
80
|
windows-api (~> 0.4.4)
|
81
81
|
wmi-lite (~> 1.0)
|
82
|
-
chef-config (12.
|
82
|
+
chef-config (12.19.36)
|
83
83
|
addressable
|
84
84
|
fuzzyurl
|
85
85
|
mixlib-config (~> 2.0)
|
@@ -87,13 +87,13 @@ GIT
|
|
87
87
|
|
88
88
|
GIT
|
89
89
|
remote: git://github.com/chef/opscode-pushy-client.git
|
90
|
-
revision:
|
91
|
-
branch: 2.
|
90
|
+
revision: 673b488071e98fa159682a3b15bc033db876dea8
|
91
|
+
branch: 2.2.0
|
92
92
|
specs:
|
93
|
-
opscode-pushy-client (2.
|
94
|
-
chef (
|
93
|
+
opscode-pushy-client (2.2.0)
|
94
|
+
chef (~> 12.19)
|
95
95
|
ffi-rzmq
|
96
|
-
ohai
|
96
|
+
ohai (~> 8.23)
|
97
97
|
uuidtools
|
98
98
|
|
99
99
|
GIT
|
@@ -113,7 +113,7 @@ GIT
|
|
113
113
|
PATH
|
114
114
|
remote: .
|
115
115
|
specs:
|
116
|
-
chef-dk (1.
|
116
|
+
chef-dk (1.3.40)
|
117
117
|
addressable (>= 2.3.5, < 2.6)
|
118
118
|
chef (~> 12.5)
|
119
119
|
chef-provisioning (~> 2.0)
|
@@ -130,33 +130,32 @@ GEM
|
|
130
130
|
remote: https://rubygems.org/
|
131
131
|
specs:
|
132
132
|
CFPropertyList (2.3.5)
|
133
|
-
activesupport (4.2.
|
133
|
+
activesupport (4.2.8)
|
134
134
|
i18n (~> 0.7)
|
135
|
-
json (~> 1.7, >= 1.7.7)
|
136
135
|
minitest (~> 5.1)
|
137
136
|
thread_safe (~> 0.3, >= 0.3.4)
|
138
137
|
tzinfo (~> 1.1)
|
139
|
-
addressable (2.
|
138
|
+
addressable (2.5.1)
|
139
|
+
public_suffix (~> 2.0, >= 2.0.2)
|
140
140
|
app_conf (0.4.2)
|
141
|
-
artifactory (2.
|
141
|
+
artifactory (2.8.1)
|
142
142
|
ast (2.3.0)
|
143
143
|
autoparse (0.3.3)
|
144
144
|
addressable (>= 2.3.1)
|
145
145
|
extlib (>= 0.9.15)
|
146
146
|
multi_json (>= 1.0.0)
|
147
|
-
aws-sdk (2.
|
148
|
-
aws-sdk-resources (= 2.
|
149
|
-
aws-sdk-core (2.
|
147
|
+
aws-sdk (2.9.3)
|
148
|
+
aws-sdk-resources (= 2.9.3)
|
149
|
+
aws-sdk-core (2.9.3)
|
150
150
|
aws-sigv4 (~> 1.0)
|
151
151
|
jmespath (~> 1.0)
|
152
|
-
aws-sdk-resources (2.
|
153
|
-
aws-sdk-core (= 2.
|
154
|
-
aws-sdk-v1 (1.
|
152
|
+
aws-sdk-resources (2.9.3)
|
153
|
+
aws-sdk-core (= 2.9.3)
|
154
|
+
aws-sdk-v1 (1.67.0)
|
155
155
|
json (~> 1.4)
|
156
|
-
nokogiri (
|
156
|
+
nokogiri (~> 1)
|
157
157
|
aws-sigv4 (1.0.0)
|
158
|
-
|
159
|
-
berkshelf (5.6.0)
|
158
|
+
berkshelf (5.6.4)
|
160
159
|
addressable (~> 2.3, >= 2.3.4)
|
161
160
|
berkshelf-api-client (>= 2.0.2, < 4.0)
|
162
161
|
buff-config (~> 2.0)
|
@@ -178,6 +177,7 @@ GEM
|
|
178
177
|
ridley (>= 4.5, < 6.0)
|
179
178
|
binding_of_caller (0.7.2)
|
180
179
|
debug_inspector (>= 0.0.1)
|
180
|
+
blankslate (2.1.2.4)
|
181
181
|
buff-config (2.0.0)
|
182
182
|
buff-extensions (~> 2.0)
|
183
183
|
varia_model (~> 0.6)
|
@@ -193,16 +193,18 @@ GEM
|
|
193
193
|
celluloid-io (0.16.2)
|
194
194
|
celluloid (>= 0.16.0)
|
195
195
|
nio4r (>= 1.1.0)
|
196
|
-
chef-provisioning (2.1
|
197
|
-
cheffish (
|
196
|
+
chef-provisioning (2.2.1)
|
197
|
+
cheffish (>= 4.0, < 6.0)
|
198
198
|
inifile (>= 2.0.2)
|
199
199
|
mixlib-install (>= 1.0, < 3.0)
|
200
200
|
net-scp (~> 1.0)
|
201
201
|
net-ssh (>= 2.9, < 5.0)
|
202
202
|
net-ssh-gateway (~> 1.2)
|
203
|
+
winrm (~> 2.0)
|
204
|
+
winrm-elevated (~> 1.0)
|
203
205
|
winrm-fs (~> 1.0)
|
204
|
-
chef-provisioning-aws (2.
|
205
|
-
aws-sdk (>= 2.
|
206
|
+
chef-provisioning-aws (2.2.0)
|
207
|
+
aws-sdk (>= 2.2.18, < 3.0)
|
206
208
|
aws-sdk-v1 (>= 1.59.0)
|
207
209
|
chef-provisioning (>= 1.0, < 3.0)
|
208
210
|
retryable (~> 2.0, >= 2.0.1)
|
@@ -210,36 +212,39 @@ GEM
|
|
210
212
|
chef-provisioning-azure (0.6.0)
|
211
213
|
chef-provisioning (>= 1.0, < 3.0)
|
212
214
|
stuartpreston-azure-sdk-for-ruby (~> 0.7)
|
213
|
-
chef-provisioning-fog (0.
|
215
|
+
chef-provisioning-fog (0.24.0)
|
214
216
|
chef-provisioning (>= 1.0, < 3.0)
|
217
|
+
cheffish (>= 4.0, < 6.0)
|
215
218
|
fog (>= 1.37.0)
|
216
219
|
fog-digitalocean
|
217
|
-
fog-
|
220
|
+
fog-scaleway
|
221
|
+
fog-softlayer (~> 1.1)
|
218
222
|
google-api-client (~> 0.8.0)
|
219
223
|
retryable
|
224
|
+
winrm-elevated
|
220
225
|
chef-provisioning-vagrant (0.11.0)
|
221
226
|
chef-provisioning
|
222
227
|
chef-sugar (3.4.0)
|
223
228
|
chef-vault (2.9.1)
|
224
|
-
chef-zero (5.2
|
229
|
+
chef-zero (5.3.2)
|
225
230
|
ffi-yajl (~> 2.2)
|
226
231
|
hashie (>= 2.0, < 4.0)
|
227
232
|
mixlib-log (~> 1.3)
|
228
233
|
rack (~> 2.0)
|
229
234
|
uuidtools (~> 2.1)
|
230
|
-
cheffish (
|
235
|
+
cheffish (5.0.1)
|
231
236
|
chef-zero (~> 5.0)
|
232
237
|
net-ssh
|
233
|
-
chefspec (
|
238
|
+
chefspec (6.2.0)
|
234
239
|
chef (>= 12.0)
|
235
|
-
fauxhai (
|
240
|
+
fauxhai (>= 3.6, < 5)
|
236
241
|
rspec (~> 3.0)
|
237
242
|
cleanroom (1.0.0)
|
238
243
|
coderay (1.1.1)
|
239
244
|
cookbook-omnifetch (0.5.1)
|
240
245
|
mixlib-archive (~> 0.4)
|
241
|
-
cookstyle (1.
|
242
|
-
rubocop (= 0.
|
246
|
+
cookstyle (1.3.0)
|
247
|
+
rubocop (= 0.47.1)
|
243
248
|
cucumber (2.4.0)
|
244
249
|
builder (>= 2.1.2)
|
245
250
|
cucumber-core (~> 1.5.0)
|
@@ -260,26 +265,24 @@ GEM
|
|
260
265
|
dep-selector-libgecode (~> 1.0)
|
261
266
|
ffi (~> 1.9)
|
262
267
|
diff-lcs (1.3)
|
263
|
-
diffy (3.
|
264
|
-
docker-api (1.33.
|
268
|
+
diffy (3.2.0)
|
269
|
+
docker-api (1.33.3)
|
265
270
|
excon (>= 0.38.0)
|
266
271
|
json
|
267
|
-
domain_name (0.5.20161129)
|
268
|
-
unf (>= 0.0.5, < 1.0.0)
|
269
272
|
erubis (2.7.0)
|
270
|
-
excon (0.
|
273
|
+
excon (0.55.0)
|
271
274
|
extlib (0.9.16)
|
272
275
|
faraday (0.9.2)
|
273
276
|
multipart-post (>= 1.2, < 3)
|
274
277
|
faraday-http-cache (2.0.0)
|
275
278
|
faraday (~> 0.8)
|
276
|
-
fauxhai (
|
279
|
+
fauxhai (4.1.0)
|
277
280
|
net-ssh
|
278
|
-
ffi (1.9.
|
279
|
-
ffi (1.9.
|
280
|
-
ffi-rzmq (2.0.
|
281
|
-
ffi-rzmq-core (>= 1.0.
|
282
|
-
ffi-rzmq-core (1.0.
|
281
|
+
ffi (1.9.18)
|
282
|
+
ffi (1.9.18-x86-mingw32)
|
283
|
+
ffi-rzmq (2.0.5)
|
284
|
+
ffi-rzmq-core (>= 1.0.6)
|
285
|
+
ffi-rzmq-core (1.0.6)
|
283
286
|
ffi
|
284
287
|
ffi-win32-extensions (1.0.3)
|
285
288
|
ffi
|
@@ -287,13 +290,15 @@ GEM
|
|
287
290
|
libyajl2 (~> 1.2)
|
288
291
|
fission (0.5.0)
|
289
292
|
CFPropertyList (~> 2.2)
|
290
|
-
fog (1.
|
293
|
+
fog (1.40.0)
|
291
294
|
fog-aliyun (>= 0.1.0)
|
292
295
|
fog-atmos
|
293
296
|
fog-aws (>= 0.6.0)
|
294
297
|
fog-brightbox (~> 0.4)
|
295
298
|
fog-cloudatcost (~> 0.1.0)
|
296
|
-
fog-core (~> 1.
|
299
|
+
fog-core (~> 1.43)
|
300
|
+
fog-digitalocean (>= 0.3.0)
|
301
|
+
fog-dnsimple (~> 1.0)
|
297
302
|
fog-dynect (~> 0.0.2)
|
298
303
|
fog-ecloud (~> 0.1)
|
299
304
|
fog-google (<= 0.1.0)
|
@@ -316,6 +321,7 @@ GEM
|
|
316
321
|
fog-xenserver
|
317
322
|
fog-xml (~> 0.1.1)
|
318
323
|
ipaddress (~> 0.5)
|
324
|
+
json (>= 1.8, < 2.0)
|
319
325
|
fog-aliyun (0.1.0)
|
320
326
|
fog-core (~> 1.27)
|
321
327
|
fog-json (~> 1.0)
|
@@ -324,7 +330,7 @@ GEM
|
|
324
330
|
fog-atmos (0.1.0)
|
325
331
|
fog-core
|
326
332
|
fog-xml
|
327
|
-
fog-aws (1.
|
333
|
+
fog-aws (1.3.0)
|
328
334
|
fog-core (~> 1.38)
|
329
335
|
fog-json (~> 1.0)
|
330
336
|
fog-xml (~> 0.1)
|
@@ -342,11 +348,14 @@ GEM
|
|
342
348
|
builder
|
343
349
|
excon (~> 0.49)
|
344
350
|
formatador (~> 0.2)
|
345
|
-
fog-digitalocean (0.
|
351
|
+
fog-digitalocean (0.3.0)
|
346
352
|
fog-core (~> 1.42)
|
347
353
|
fog-json (>= 1.0)
|
348
354
|
fog-xml (>= 0.1)
|
349
355
|
ipaddress (>= 0.5)
|
356
|
+
fog-dnsimple (1.0.0)
|
357
|
+
fog-core (~> 1.38)
|
358
|
+
fog-json (~> 1.0)
|
350
359
|
fog-dynect (0.0.3)
|
351
360
|
fog-core
|
352
361
|
fog-json
|
@@ -363,7 +372,7 @@ GEM
|
|
363
372
|
multi_json (~> 1.10)
|
364
373
|
fog-local (0.3.1)
|
365
374
|
fog-core (~> 1.27)
|
366
|
-
fog-openstack (0.1.
|
375
|
+
fog-openstack (0.1.20)
|
367
376
|
fog-core (>= 1.40)
|
368
377
|
fog-json (>= 1.0)
|
369
378
|
ipaddress (>= 0.8)
|
@@ -390,6 +399,9 @@ GEM
|
|
390
399
|
fog-sakuracloud (1.7.5)
|
391
400
|
fog-core
|
392
401
|
fog-json
|
402
|
+
fog-scaleway (0.2.1)
|
403
|
+
fog-core (~> 1.42)
|
404
|
+
fog-json (~> 1.0)
|
393
405
|
fog-serverlove (0.1.2)
|
394
406
|
fog-core
|
395
407
|
fog-json
|
@@ -408,16 +420,16 @@ GEM
|
|
408
420
|
fog-voxel (0.1.0)
|
409
421
|
fog-core
|
410
422
|
fog-xml
|
411
|
-
fog-vsphere (1.
|
423
|
+
fog-vsphere (1.9.0)
|
412
424
|
fog-core
|
413
425
|
rbvmomi (~> 1.9)
|
414
|
-
fog-xenserver (0.
|
426
|
+
fog-xenserver (0.3.0)
|
415
427
|
fog-core
|
416
428
|
fog-xml
|
417
|
-
fog-xml (0.1.
|
429
|
+
fog-xml (0.1.3)
|
418
430
|
fog-core
|
419
|
-
nokogiri (
|
420
|
-
foodcritic (
|
431
|
+
nokogiri (>= 1.5.11, < 2.0.0)
|
432
|
+
foodcritic (10.2.2)
|
421
433
|
cucumber-core (>= 1.3)
|
422
434
|
erubis
|
423
435
|
nokogiri (>= 1.5, < 2.0)
|
@@ -427,7 +439,7 @@ GEM
|
|
427
439
|
yajl-ruby (~> 1.1)
|
428
440
|
formatador (0.2.5)
|
429
441
|
fuzzyurl (0.9.0)
|
430
|
-
gherkin (4.
|
442
|
+
gherkin (4.1.1)
|
431
443
|
git (1.3.0)
|
432
444
|
google-api-client (0.8.7)
|
433
445
|
activesupport (>= 3.2, < 5.0)
|
@@ -461,27 +473,19 @@ GEM
|
|
461
473
|
thor (>= 0.18.1)
|
462
474
|
gyoku (1.3.1)
|
463
475
|
builder (>= 2.1.2)
|
464
|
-
hashie (3.5.
|
476
|
+
hashie (3.5.5)
|
465
477
|
highline (1.7.8)
|
466
478
|
hitimes (1.2.4)
|
467
479
|
hitimes (1.2.4-x86-mingw32)
|
468
|
-
http (2.1.0)
|
469
|
-
addressable (~> 2.3)
|
470
|
-
http-cookie (~> 1.0)
|
471
|
-
http-form_data (~> 1.0.1)
|
472
|
-
http_parser.rb (~> 0.6.0)
|
473
|
-
http-cookie (1.0.3)
|
474
|
-
domain_name (~> 0.5)
|
475
|
-
http-form_data (1.0.1)
|
476
|
-
http_parser.rb (0.6.0)
|
477
480
|
httpclient (2.8.3)
|
478
|
-
i18n (0.8.
|
481
|
+
i18n (0.8.1)
|
479
482
|
inflecto (0.0.2)
|
480
483
|
inifile (3.0.0)
|
481
484
|
iniparse (1.4.2)
|
482
|
-
inspec (1.
|
485
|
+
inspec (1.19.1)
|
486
|
+
addressable (~> 2.4)
|
487
|
+
faraday (>= 0.9.0)
|
483
488
|
hashie (~> 3.4)
|
484
|
-
http (~> 2.1.0)
|
485
489
|
json (>= 1.8, < 3.0)
|
486
490
|
method_source (~> 0.8)
|
487
491
|
mixlib-log
|
@@ -490,19 +494,19 @@ GEM
|
|
490
494
|
rainbow (~> 2)
|
491
495
|
rspec (~> 3)
|
492
496
|
rspec-its (~> 1.2)
|
493
|
-
rspec_junit_formatter (~> 0.2.3)
|
494
497
|
rubyzip (~> 1.1)
|
495
498
|
sslshake (~> 1)
|
496
499
|
thor (~> 0.19)
|
500
|
+
toml (~> 0.1)
|
497
501
|
train (>= 0.22.0, < 1.0)
|
498
502
|
ipaddress (0.8.3)
|
499
503
|
jmespath (1.3.1)
|
500
504
|
json (1.8.6)
|
501
505
|
jwt (1.5.6)
|
502
|
-
kitchen-dokken (
|
506
|
+
kitchen-dokken (2.1.2)
|
503
507
|
docker-api (~> 1.33)
|
504
|
-
test-kitchen (~> 1.
|
505
|
-
kitchen-ec2 (1.2
|
508
|
+
test-kitchen (~> 1.15)
|
509
|
+
kitchen-ec2 (1.3.2)
|
506
510
|
aws-sdk (~> 2)
|
507
511
|
excon
|
508
512
|
multi_json
|
@@ -512,7 +516,7 @@ GEM
|
|
512
516
|
hashie (~> 3.4)
|
513
517
|
inspec (>= 0.34.0, < 2.0.0)
|
514
518
|
test-kitchen (~> 1.6)
|
515
|
-
kitchen-vagrant (1.
|
519
|
+
kitchen-vagrant (1.1.0)
|
516
520
|
test-kitchen (~> 1.4)
|
517
521
|
knife-opc (0.3.2)
|
518
522
|
knife-push (1.0.2)
|
@@ -533,7 +537,7 @@ GEM
|
|
533
537
|
rb-inotify (~> 0.9, >= 0.9.7)
|
534
538
|
ruby_dep (~> 1.2)
|
535
539
|
little-plugger (1.1.4)
|
536
|
-
logging (2.
|
540
|
+
logging (2.2.0)
|
537
541
|
little-plugger (~> 1.1)
|
538
542
|
multi_json (~> 1.10)
|
539
543
|
lumberjack (1.0.11)
|
@@ -553,7 +557,7 @@ GEM
|
|
553
557
|
mixlib-log
|
554
558
|
mixlib-cli (1.7.0)
|
555
559
|
mixlib-config (2.2.4)
|
556
|
-
mixlib-install (2.1.
|
560
|
+
mixlib-install (2.1.12)
|
557
561
|
artifactory
|
558
562
|
mixlib-shellout
|
559
563
|
mixlib-versioning
|
@@ -564,7 +568,7 @@ GEM
|
|
564
568
|
win32-process (~> 0.8.2)
|
565
569
|
wmi-lite (~> 1.0)
|
566
570
|
mixlib-versioning (1.1.0)
|
567
|
-
molinillo (0.5.
|
571
|
+
molinillo (0.5.7)
|
568
572
|
multi_json (1.12.1)
|
569
573
|
multi_test (0.1.2)
|
570
574
|
multipart-post (2.0.0)
|
@@ -573,7 +577,7 @@ GEM
|
|
573
577
|
net-ssh (>= 2.6.5)
|
574
578
|
net-sftp (2.1.2)
|
575
579
|
net-ssh (>= 2.6.5)
|
576
|
-
net-ssh (
|
580
|
+
net-ssh (4.1.0)
|
577
581
|
net-ssh-gateway (1.3.0)
|
578
582
|
net-ssh (>= 2.6.5)
|
579
583
|
net-ssh-multi (1.2.1)
|
@@ -605,9 +609,11 @@ GEM
|
|
605
609
|
wmi-lite (~> 1.0)
|
606
610
|
os (0.9.6)
|
607
611
|
paint (1.0.1)
|
608
|
-
parallel (1.
|
609
|
-
parser (2.
|
612
|
+
parallel (1.11.1)
|
613
|
+
parser (2.4.0.0)
|
610
614
|
ast (~> 2.2)
|
615
|
+
parslet (1.5.0)
|
616
|
+
blankslate (~> 2.0)
|
611
617
|
plist (3.2.0)
|
612
618
|
polyglot (0.3.5)
|
613
619
|
powerpack (0.1.1)
|
@@ -625,19 +631,20 @@ GEM
|
|
625
631
|
pry-stack_explorer (0.4.9.2)
|
626
632
|
binding_of_caller (>= 0.7)
|
627
633
|
pry (>= 0.9.11)
|
634
|
+
public_suffix (2.0.5)
|
628
635
|
rack (2.0.1)
|
629
636
|
rainbow (2.2.1)
|
630
637
|
rake (12.0.0)
|
631
638
|
rb-fsevent (0.9.8)
|
632
639
|
rb-inotify (0.9.8)
|
633
640
|
ffi (>= 0.5.0)
|
634
|
-
rb-readline (0.5.
|
635
|
-
rbvmomi (1.
|
636
|
-
builder (~> 3.
|
641
|
+
rb-readline (0.5.4)
|
642
|
+
rbvmomi (1.10.0)
|
643
|
+
builder (~> 3.0)
|
637
644
|
json (>= 1.8)
|
638
645
|
nokogiri (~> 1.5)
|
639
646
|
trollop (~> 2.1)
|
640
|
-
rdoc (5.
|
647
|
+
rdoc (5.1.0)
|
641
648
|
rdp-ruby-wmi (0.3.1)
|
642
649
|
retriable (1.4.1)
|
643
650
|
retryable (2.0.4)
|
@@ -678,8 +685,8 @@ GEM
|
|
678
685
|
rspec_junit_formatter (0.2.3)
|
679
686
|
builder (< 4)
|
680
687
|
rspec-core (>= 2, < 4, != 2.12.0)
|
681
|
-
rubocop (0.
|
682
|
-
parser (>= 2.3.
|
688
|
+
rubocop (0.47.1)
|
689
|
+
parser (>= 2.3.3.1, < 3.0)
|
683
690
|
powerpack (~> 0.1)
|
684
691
|
rainbow (>= 1.99.1, < 3.0)
|
685
692
|
ruby-progressbar (~> 1.7)
|
@@ -689,7 +696,7 @@ GEM
|
|
689
696
|
ruby-shadow (2.5.0)
|
690
697
|
ruby_dep (1.5.0)
|
691
698
|
rubyntlm (0.6.1)
|
692
|
-
rubyzip (1.2.
|
699
|
+
rubyzip (1.2.1)
|
693
700
|
rufus-lru (1.1.0)
|
694
701
|
safe_yaml (1.0.4)
|
695
702
|
sawyer (0.8.1)
|
@@ -712,12 +719,12 @@ GEM
|
|
712
719
|
solve (3.1.0)
|
713
720
|
molinillo (>= 0.5)
|
714
721
|
semverse (>= 1.1, < 3.0)
|
715
|
-
specinfra (2.
|
722
|
+
specinfra (2.67.7)
|
716
723
|
net-scp
|
717
724
|
net-ssh (>= 2.7, < 5.0)
|
718
725
|
net-telnet
|
719
726
|
sfl
|
720
|
-
sslshake (1.0
|
727
|
+
sslshake (1.1.0)
|
721
728
|
stuartpreston-azure-sdk-for-ruby (0.7.2)
|
722
729
|
json (~> 1.8)
|
723
730
|
mime-types (> 1, < 4)
|
@@ -726,19 +733,21 @@ GEM
|
|
726
733
|
uuid (~> 2.0)
|
727
734
|
syslog-logger (1.6.8)
|
728
735
|
systemu (2.6.5)
|
729
|
-
test-kitchen (1.
|
736
|
+
test-kitchen (1.16.0)
|
730
737
|
mixlib-install (>= 1.2, < 3.0)
|
731
738
|
mixlib-shellout (>= 1.2, < 3.0)
|
732
739
|
net-scp (~> 1.1)
|
733
740
|
net-ssh (>= 2.9, < 5.0)
|
734
741
|
net-ssh-gateway (~> 1.2)
|
735
742
|
safe_yaml (~> 1.0)
|
736
|
-
thor (~> 0.
|
743
|
+
thor (~> 0.19, < 0.19.2)
|
737
744
|
thor (0.19.1)
|
738
|
-
thread_safe (0.3.
|
745
|
+
thread_safe (0.3.6)
|
739
746
|
timers (4.0.4)
|
740
747
|
hitimes
|
741
|
-
|
748
|
+
toml (0.1.2)
|
749
|
+
parslet (~> 1.5.0)
|
750
|
+
train (0.23.0)
|
742
751
|
docker-api (~> 1.26)
|
743
752
|
json (>= 1.8, < 3.0)
|
744
753
|
mixlib-shellout (~> 2.0)
|
@@ -749,13 +758,9 @@ GEM
|
|
749
758
|
treetop (1.6.8)
|
750
759
|
polyglot (~> 0.3)
|
751
760
|
trollop (2.1.2)
|
752
|
-
tzinfo (1.2.
|
761
|
+
tzinfo (1.2.3)
|
753
762
|
thread_safe (~> 0.1)
|
754
763
|
ubuntu_ami (0.4.1)
|
755
|
-
unf (0.1.4)
|
756
|
-
unf_ext
|
757
|
-
unf_ext (0.0.7.2)
|
758
|
-
unf_ext (0.0.7.2-x86-mingw32)
|
759
764
|
unicode-display_width (1.1.3)
|
760
765
|
uuid (2.3.8)
|
761
766
|
macaddr (~> 1.0)
|
@@ -786,7 +791,7 @@ GEM
|
|
786
791
|
windows-pr (1.2.6)
|
787
792
|
win32-api (>= 1.4.5)
|
788
793
|
windows-api (>= 0.4.0)
|
789
|
-
winrm (2.1
|
794
|
+
winrm (2.2.1)
|
790
795
|
builder (>= 2.1.2)
|
791
796
|
erubis (~> 2.7)
|
792
797
|
gssapi (~> 1.2)
|
@@ -813,7 +818,6 @@ PLATFORMS
|
|
813
818
|
x86-mingw32
|
814
819
|
|
815
820
|
DEPENDENCIES
|
816
|
-
addressable (~> 2.4.0)
|
817
821
|
appbundler!
|
818
822
|
artifactory
|
819
823
|
berkshelf (>= 5.0)
|
@@ -828,7 +832,7 @@ DEPENDENCIES
|
|
828
832
|
chef-vault
|
829
833
|
cheffish (>= 4.0)
|
830
834
|
chefspec
|
831
|
-
cookstyle
|
835
|
+
cookstyle (>= 1.3.0)
|
832
836
|
cucumber
|
833
837
|
dco
|
834
838
|
dep-selector-libgecode
|
@@ -836,11 +840,11 @@ DEPENDENCIES
|
|
836
840
|
fauxhai
|
837
841
|
ffi
|
838
842
|
ffi-rzmq-core
|
839
|
-
foodcritic (>=
|
843
|
+
foodcritic (>= 9.0)
|
840
844
|
github_changelog_generator!
|
841
845
|
guard
|
842
846
|
inspec (>= 0.17.1)
|
843
|
-
kitchen-dokken (
|
847
|
+
kitchen-dokken (>= 2.1.0)
|
844
848
|
kitchen-ec2
|
845
849
|
kitchen-inspec
|
846
850
|
kitchen-vagrant
|
@@ -879,4 +883,4 @@ DEPENDENCIES
|
|
879
883
|
yard
|
880
884
|
|
881
885
|
BUNDLED WITH
|
882
|
-
1.
|
886
|
+
1.14.6
|