batali-tk 0.1.2 → 0.1.4

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: c9819f8108c701d50fc27f566adb37aaf7c9dc1c
4
- data.tar.gz: ef643baaa1a4fde78d041ee32a314f7826666283
3
+ metadata.gz: dc8c7a562ad705cdeb8271748e5809e4a988f41c
4
+ data.tar.gz: 17ef1799d68a9e2cb7d50e1fb91ab5f39926d899
5
5
  SHA512:
6
- metadata.gz: c8c3a308e6c83e99df17ce21c6a6d0362e41a2f0fd805be332f7255d8e86fb825c0b1306e2e9578e896ad363020ced60d548042881cadffe7bbae37e051c2b79
7
- data.tar.gz: 6963dd6ba5f0d8f325b6318304ed86e86ac98583bd20f5ad331364baaf9dc03a4925173f24bd4474b32da9502eff444bee5c181d35c0a367b88748db50776788
6
+ metadata.gz: 680edcc872fe4e33fc7a3a1553bb9d154bcbc503983fdcecf0e679e64026e88764cba144a9e254e14137b25f0315621e2afd78a8ad180df05a2fd0b1f0fa837a
7
+ data.tar.gz: cd1c0a282e7c91afec6e8fb22c29da2ac48d5f0a4ffaa315f38fefb20cbb0ba54a2ef9177cbca09dbd7923ef00383d8844d2f41e5302e56152dc1d7a5b740327
@@ -1,3 +1,8 @@
1
+ # v0.1.4
2
+ * [fix] Fix cookbook installation issue
3
+ * Always send batali action output to debug
4
+ * Bump minimum constraint on batali
5
+
1
6
  # v0.1.2
2
7
  * Update minimum constraint on batali dependency
3
8
 
@@ -10,7 +10,7 @@ Gem::Specification.new do |s|
10
10
  s.description = 'Batali support injector for test kitchen'
11
11
  s.require_path = 'lib'
12
12
  s.license = 'Apache 2.0'
13
- s.add_runtime_dependency 'batali', '>= 0.1.21', '< 1'
13
+ s.add_runtime_dependency 'batali', '>= 0.2.16', '< 1'
14
14
  s.add_runtime_dependency 'test-kitchen', BataliTk::TK_CONSTRAINT
15
15
  s.executables << 'batali-tk'
16
16
  s.files = Dir['{lib,bin}/**/**/*'] + %w(batali-tk.gemspec README.md CHANGELOG.md CONTRIBUTING.md LICENSE)
@@ -45,13 +45,16 @@ module Kitchen
45
45
  # Resolve cookbooks and install into vendor location
46
46
  def resolve
47
47
  info "Resolving cookbook dependencies with Batali #{::Batali::VERSION}..."
48
- debug "Using Batail file located at: #{batali_file}"
48
+ debug "Using Batali file located at: #{batali_file}"
49
49
  output = ''
50
50
  begin
51
51
  ::Batali::Command::Update.new(
52
52
  Smash.new(
53
53
  :file => batali_file,
54
54
  :path => vendor_path,
55
+ :update => {
56
+ :install => true
57
+ },
55
58
  :ui => Bogo::Ui.new(
56
59
  :app_name => 'Batali',
57
60
  :output_to => StringIO.new(output)
@@ -61,8 +64,8 @@ module Kitchen
61
64
  ).execute!
62
65
  rescue => e
63
66
  error "Batali failed to install cookbooks! #{e.class}: #{e}"
64
- debug output
65
67
  end
68
+ debug "Batali output:\n#{output}"
66
69
  end
67
70
 
68
71
  end
@@ -1,6 +1,6 @@
1
1
  module BataliTk
2
2
  # Library version
3
- VERSION = Gem::Version.new('0.1.2')
3
+ VERSION = Gem::Version.new('0.1.4')
4
4
  # Constraint for test-kitchen dependency
5
5
  TK_CONSTRAINT = '~> 1.3'
6
6
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: batali-tk
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Roberts
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-03-30 00:00:00.000000000 Z
11
+ date: 2015-06-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: batali
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.1.21
19
+ version: 0.2.16
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: '1'
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.1.21
29
+ version: 0.2.16
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: '1'