kitchen-itamae 0.0.5 → 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 69f3a930309f68375ec21e44c7a43fab5b645495
4
- data.tar.gz: 0e179f3300ad373e71e93017b08cbdbe94490c0e
3
+ metadata.gz: 46c279608ea63243b1bb1d83d737e3852e8457a2
4
+ data.tar.gz: 76ef0e7c3d65219028ce778fedcbcc83636949d9
5
5
  SHA512:
6
- metadata.gz: 6757b4a0886e7a9cf8f171ab4df7227729ecb1c7ecb1f48124c8b327b9f8242b3f3d106f8a9acb1a435c6a2a84fe1c708c2e9ec0f1e14945f1a2ad2bf6861372
7
- data.tar.gz: e7f614f8aafce2277724ec31c39a449bf31634e447ed34dda2987c37fc291b81192000967d328633be73034f6f66b154d2ace836c99a1bce62ea0d62dd48af9b
6
+ metadata.gz: 8939cc3fc63f01d209182d433269f94be518f2f99d8a69c3271d3b641e461990c06943cd6f149d48ddda693060a7f63093775235a6f0345b09bbd952c238facd
7
+ data.tar.gz: 8c391542a73ff0cad8aee3b947ca4606383f7f86d74d7938dc69042c72b5e1f6f975eade9813f12728bedc68caa256a9b50b9b1450e0eecf4a77f14d3cb3b061
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  CHANGELOG of Itamae::Kitchen
2
2
 
3
+ ## 0.1.0
4
+
5
+ - Use run_list instead of recipe_list.
6
+ - the `run_list` will merge both platforms and suites by data_munger.
7
+
3
8
  ## 0.0.5
4
9
 
5
10
  - Cleanup: update itamae_root behavior.
@@ -18,7 +18,6 @@ module Kitchen
18
18
  end
19
19
  expand_path_for :itamae_root
20
20
 
21
- default_config :recipe_list, []
22
21
  default_config :node_json, nil
23
22
  default_config :with_ohai, false
24
23
  default_config :itamae_option, nil
@@ -44,7 +43,7 @@ module Kitchen
44
43
  # (see Base#run_command)
45
44
  def run_command
46
45
  debug(JSON.pretty_generate(config))
47
- runlist = config[:recipe_list].map do |recipe|
46
+ runlist = config[:run_list].map do |recipe|
48
47
  cmd = ["cd #{config[:root_path]};", sudo('/opt/chef/bin/itamae')]
49
48
  cmd << 'local'
50
49
  cmd << '--ohai' if config[:with_ohai]
@@ -1,5 +1,5 @@
1
1
  module Kitchen
2
2
  module Itamae
3
- VERSION = "0.0.5"
3
+ VERSION = "0.1.0"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kitchen-itamae
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - sawanoboly