bento-ya 0.1.2 → 0.1.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/bento/buildmetadata.rb +1 -0
- data/lib/bento/test.rb +3 -1
- data/lib/bento/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 42ec8761debb2d20e3edb010680ea3f7433262bd
|
4
|
+
data.tar.gz: 30752ff0ce2b4826f6a955a9227689108cc4fcd2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 551defabbca5280b71d477a9ceec8035556013fa1f298f08e09aa3c770b20a6dbbfd2a36107bc78137d1b3d03fa5e3cabc8416f8cfff1c0c92102a4929da7b9b
|
7
|
+
data.tar.gz: d3d9ffb2805eb940b50c3613f49ad741096f26b3dc970c6c6f29e41d4492a67d84a8ac21a14a9a50729d45536806ba104e350bee974a6221db944605a6d0117f
|
data/CHANGELOG.md
CHANGED
@@ -1,10 +1,18 @@
|
|
1
1
|
# Change Log
|
2
2
|
|
3
|
+
## [v0.1.3](https://github.com/cheeseplus/bento-ya/tree/v0.1.3) (2017-07-05)
|
4
|
+
[Full Changelog](https://github.com/cheeseplus/bento-ya/compare/v0.1.2...v0.1.3)
|
5
|
+
|
6
|
+
**Merged pull requests:**
|
7
|
+
|
8
|
+
- Fixing require and attr reader for test [\#22](https://github.com/cheeseplus/bento-ya/pull/22) ([cheeseplus](https://github.com/cheeseplus))
|
9
|
+
|
3
10
|
## [v0.1.2](https://github.com/cheeseplus/bento-ya/tree/v0.1.2) (2017-07-05)
|
4
11
|
[Full Changelog](https://github.com/cheeseplus/bento-ya/compare/v0.1.1...v0.1.2)
|
5
12
|
|
6
13
|
**Merged pull requests:**
|
7
14
|
|
15
|
+
- Release 0.1.2 [\#21](https://github.com/cheeseplus/bento-ya/pull/21) ([cheeseplus](https://github.com/cheeseplus))
|
8
16
|
- Cleanup some requires [\#20](https://github.com/cheeseplus/bento-ya/pull/20) ([cheeseplus](https://github.com/cheeseplus))
|
9
17
|
- Testing of shared folder now default, option inverted [\#18](https://github.com/cheeseplus/bento-ya/pull/18) ([cheeseplus](https://github.com/cheeseplus))
|
10
18
|
- Fix typo in README.md [\#17](https://github.com/cheeseplus/bento-ya/pull/17) ([ffmike](https://github.com/ffmike))
|
data/lib/bento/buildmetadata.rb
CHANGED
data/lib/bento/test.rb
CHANGED
@@ -1,9 +1,11 @@
|
|
1
1
|
require 'bento/common'
|
2
|
+
require 'mixlib/shellout'
|
3
|
+
require 'erb'
|
2
4
|
|
3
5
|
class TestRunner
|
4
6
|
include Common
|
5
7
|
|
6
|
-
attr_reader :shared_folder, :boxname, :provider, :box_url, :
|
8
|
+
attr_reader :shared_folder, :boxname, :provider, :box_url, :no_shared, :provisioner
|
7
9
|
|
8
10
|
def initialize(opts)
|
9
11
|
@debug = opts.debug
|
data/lib/bento/version.rb
CHANGED