bento-ya 1.1.1 → 1.1.2
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 +4 -4
- data/CHANGELOG.md +7 -0
- data/lib/bento/test.rb +1 -1
- data/lib/bento/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7872edc96d6dc537bece121af04e66cb7adfc73efc917f9dca38163ad82d3825
|
|
4
|
+
data.tar.gz: 709164d7132759335424bb7da48a956f0d2d4f361a0128ce13ff3eaf719774ce
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2b10638662ceaa2ac2e8ab38282a26d406b8eb9a224cfc9ef7fe292544c550a8afeb52835a84032dda3a471d8cabb9c9acd52e8abbf37ed2045b3018a428c788
|
|
7
|
+
data.tar.gz: f070d593e1f415169d5cd3c972cecdb8e52714acf1e20a575f61e9cc01ff07f562f044c79322f83e0fca9639efd10490067050d0c81ca6216acad137eb39e2c0
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## [v1.1.2](https://github.com/cheeseplus/bento-ya/tree/v1.1.2) (2018-08-14)
|
|
4
|
+
[Full Changelog](https://github.com/cheeseplus/bento-ya/compare/v1.1.1...v1.1.2)
|
|
5
|
+
|
|
6
|
+
**Merged pull requests:**
|
|
7
|
+
|
|
8
|
+
- Alter share\_disabled regex to catch all BSDs [\#41](https://github.com/cheeseplus/bento-ya/pull/41) ([cheeseplus](https://github.com/cheeseplus))
|
|
9
|
+
|
|
3
10
|
## [v1.1.1](https://github.com/cheeseplus/bento-ya/tree/v1.1.1) (2018-08-13)
|
|
4
11
|
[Full Changelog](https://github.com/cheeseplus/bento-ya/compare/v1.1.0...v1.1.1)
|
|
5
12
|
|
data/lib/bento/test.rb
CHANGED
|
@@ -44,7 +44,7 @@ class TestRunner
|
|
|
44
44
|
md = box_metadata(md_json)
|
|
45
45
|
@boxname = md["name"]
|
|
46
46
|
@providers = md["providers"]
|
|
47
|
-
@share_disabled = no_shared || /(
|
|
47
|
+
@share_disabled = no_shared || /(bsd|opensuse)/.match(boxname) ? true : false
|
|
48
48
|
|
|
49
49
|
dir = "#{File.expand_path("../../", File.dirname(__FILE__))}/templates"
|
|
50
50
|
%w{.kitchen.yml bootstrap.sh}.each do |file|
|
data/lib/bento/version.rb
CHANGED
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.2
|
|
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-08-
|
|
11
|
+
date: 2018-08-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: mixlib-shellout
|