kitchen-docker_cli 0.12.0 → 0.12.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 59f4ff9d93ea123fbe449de146d4204624188a7f
4
- data.tar.gz: 80110e3e1f6d1e62f70cec1c5636810ac1f2b2af
3
+ metadata.gz: 4e0a0e76a7c98fcaba3b91e0477e5856ed858cf2
4
+ data.tar.gz: e78245d37535383507da953c3832b4b82b458481
5
5
  SHA512:
6
- metadata.gz: 8814b04067321e872576e35844a25c6f6bf0e1f86ba84e7f01e129e8a76da22f4953559925179a56facf0bbd960296b61b2fc8acc8bd33d982ef3b41e4c4c90c
7
- data.tar.gz: 29d2f6b05daa100dbbd5a4366c415af25f09b4156552f108d07c550653350a1f4da5449bf5e29897205997041dcc7c1f32de457d2941fcccfd57198d67db4f2f
6
+ metadata.gz: 67bb308266dbbdd7d7479b14d6e750d17a38f5d1c75caf5f00b85652a4d4195ed4c1465a525329da413491b49b7a780f57b1d0d4dcea8610b6188ff6b150fe5d
7
+ data.tar.gz: 613420358e245663d8d11b43cab6c67aaa085f1547e1a6040c45e310aea0c4055d548c612b9460eb92b5e8040bbe2b3d8811e5e617d8e7c718b9a02e7a09eedb
data/CHANGELOG.md CHANGED
@@ -1,6 +1,10 @@
1
+ ## 0.12.1
2
+
3
+ * Fix error on `kitchen-ansible` with extra_vars [#18][]
4
+
1
5
  ## 0.12.0
2
6
 
3
- * Add `dns` option
7
+ * Pull request [#17][]: Add `dns` option ([@yewton][])
4
8
 
5
9
  ## 0.11.2
6
10
 
@@ -82,5 +86,8 @@
82
86
  [#11]: https://github.com/marcy-terui/kitchen-docker_cli/issues/11
83
87
  [#12]: https://github.com/marcy-terui/kitchen-docker_cli/issues/12
84
88
  [#16]: https://github.com/marcy-terui/kitchen-docker_cli/issues/16
89
+ [#17]: https://github.com/marcy-terui/kitchen-docker_cli/issues/17
90
+ [#18]: https://github.com/marcy-terui/kitchen-docker_cli/issues/18
85
91
  [@grubernaut]: https://github.com/grubernaut
86
92
  [@hd-deman]: https://github.com/hd-deman
93
+ [@yewton]: https://github.com/yewton
@@ -21,6 +21,6 @@ module Kitchen
21
21
  module Driver
22
22
 
23
23
  # Version string for DockerCli Kitchen driver
24
- DOCKER_CLI_VERSION = '0.12.0'
24
+ DOCKER_CLI_VERSION = '0.12.1'
25
25
  end
26
26
  end
@@ -75,7 +75,7 @@ module Kitchen
75
75
  exec_cmd = "exec"
76
76
  exec_cmd << " -t" if opt[:tty]
77
77
  exec_cmd << " -i" if opt[:interactive]
78
- cmd = Util.wrap_command(cmd.gsub('\'', '"')) unless cmd.match(/\Ash\s\-c/)
78
+ cmd = Util.wrap_command(cmd.gsub("'", "'\\\\''")) unless cmd.match(/\Ash\s\-c/)
79
79
  exec_cmd << " #{container_id} #{cmd}"
80
80
  end
81
81
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kitchen-docker_cli
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.12.0
4
+ version: 0.12.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Masashi Terui
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-06-25 00:00:00.000000000 Z
11
+ date: 2015-06-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: test-kitchen