bento-ya 1.1.0 → 1.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/CHANGELOG.md +13 -0
- data/lib/bento/version.rb +1 -1
- data/templates/kitchen.yml.erb +5 -2
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: f1a4c822515341e5603eb9e15b93258dc1ef854126b3eb35651d1dd5d49593eb
|
4
|
+
data.tar.gz: 80ef9f0fa22dbaf70ccf295895fd58817593bfc9426ca96a205e875ecb4e0c7f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0eca27852577687d20eb6b0ce43972b87c46316118cb543dc5c8d230876cf5116b7839ee52f1f5e91591846670fd3358291610be63ab704bf13fa8e298f8b2ed
|
7
|
+
data.tar.gz: 31c46ec77a29e58d50d93bce3a57435d60e18a7d54b47873ad20f5c14db08830537cf022aa17b5adcac9409f50880ba2b1dcb5d1e8483e4c88accf6cc24361a2
|
data/CHANGELOG.md
CHANGED
@@ -1,4 +1,17 @@
|
|
1
1
|
# Change Log
|
2
|
+
|
3
|
+
## [v1.1.1](https://github.com/cheeseplus/bento-ya/tree/v1.1.1) (2018-08-13)
|
4
|
+
[Full Changelog](https://github.com/cheeseplus/bento-ya/compare/v1.1.0...v1.1.1)
|
5
|
+
|
6
|
+
**Closed issues:**
|
7
|
+
|
8
|
+
- disable synced\_folder for Hyper-V provider [\#37](https://github.com/cheeseplus/bento-ya/issues/37)
|
9
|
+
- use full paths for `box\_url` in kitchen.yml [\#36](https://github.com/cheeseplus/bento-ya/issues/36)
|
10
|
+
|
11
|
+
**Merged pull requests:**
|
12
|
+
|
13
|
+
- This fixes Windows Hyper-V builders [\#39](https://github.com/cheeseplus/bento-ya/pull/39) ([cheeseplus](https://github.com/cheeseplus))
|
14
|
+
|
2
15
|
## [v1.1.0](https://github.com/cheeseplus/bento-ya/tree/v1.1.0) (2018-01-02)
|
3
16
|
[Full Changelog](https://github.com/cheeseplus/bento-ya/compare/v1.0.1...v1.1.0)
|
4
17
|
|
data/lib/bento/version.rb
CHANGED
data/templates/kitchen.yml.erb
CHANGED
@@ -17,10 +17,13 @@ platforms:
|
|
17
17
|
provider: <%= k %>
|
18
18
|
<% end -%>
|
19
19
|
box: bento-<%= @boxname %>
|
20
|
-
box_url: file://<%=
|
20
|
+
box_url: file://<%= Dir.pwd %>/builds/<%= v['file'] %>
|
21
21
|
synced_folders:
|
22
|
+
<% if k =~ /hyperv/ -%>
|
23
|
+
- [".", "/vagrant", "disabled: true"]
|
24
|
+
<% else -%>
|
22
25
|
- [".", "/vagrant", "disabled: <%= @share_disabled %>"]
|
23
|
-
|
26
|
+
<% end -%>
|
24
27
|
<% end -%>
|
25
28
|
suites:
|
26
29
|
- name: default
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bento-ya
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Seth Thomas
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-
|
11
|
+
date: 2018-08-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: mixlib-shellout
|
@@ -91,7 +91,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
91
91
|
version: '0'
|
92
92
|
requirements: []
|
93
93
|
rubyforge_project:
|
94
|
-
rubygems_version: 2.6
|
94
|
+
rubygems_version: 2.7.6
|
95
95
|
signing_key:
|
96
96
|
specification_version: 4
|
97
97
|
summary: A RubyGem for managing chef/bento builds
|