bento-ya 0.1.3 → 0.1.4
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 +7 -3
- 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: 6e04c6c78424c7c84671934d4a8c136e8b541a84
|
4
|
+
data.tar.gz: 06a45a721b281df3715d595f81608331f1644795
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8fecf29f4e438211731618e669552a1cd2084aa28f949c44ca784f412c6414aac94a0fda73918910e18f50d651cc78dad2f1a0b9cb10a79ab60990ce5c2ed462
|
7
|
+
data.tar.gz: 4d6f3fa0b79dd0c640fe989c66aeec40b3304e49c6aa4bdcedfb445d8d039dc746651e32ba154ee5c7759de885f8ee567942afc8fcbbd7be703d9dfa97da5a53
|
data/CHANGELOG.md
CHANGED
@@ -1,10 +1,18 @@
|
|
1
1
|
# Change Log
|
2
2
|
|
3
|
+
## [v0.1.4](https://github.com/cheeseplus/bento-ya/tree/v0.1.4) (2017-07-05)
|
4
|
+
[Full Changelog](https://github.com/cheeseplus/bento-ya/compare/v0.1.3...v0.1.4)
|
5
|
+
|
6
|
+
**Merged pull requests:**
|
7
|
+
|
8
|
+
- TravisCI doesn't have vagrant so punt [\#24](https://github.com/cheeseplus/bento-ya/pull/24) ([cheeseplus](https://github.com/cheeseplus))
|
9
|
+
|
3
10
|
## [v0.1.3](https://github.com/cheeseplus/bento-ya/tree/v0.1.3) (2017-07-05)
|
4
11
|
[Full Changelog](https://github.com/cheeseplus/bento-ya/compare/v0.1.2...v0.1.3)
|
5
12
|
|
6
13
|
**Merged pull requests:**
|
7
14
|
|
15
|
+
- Release 0.1.3 [\#23](https://github.com/cheeseplus/bento-ya/pull/23) ([cheeseplus](https://github.com/cheeseplus))
|
8
16
|
- Fixing require and attr reader for test [\#22](https://github.com/cheeseplus/bento-ya/pull/22) ([cheeseplus](https://github.com/cheeseplus))
|
9
17
|
|
10
18
|
## [v0.1.2](https://github.com/cheeseplus/bento-ya/tree/v0.1.2) (2017-07-05)
|
data/lib/bento/buildmetadata.rb
CHANGED
@@ -76,8 +76,12 @@ class BuildMetadata
|
|
76
76
|
end
|
77
77
|
|
78
78
|
def vagrant_ver
|
79
|
-
|
80
|
-
|
81
|
-
|
79
|
+
if ENV['TRAVIS']
|
80
|
+
'travis'
|
81
|
+
else
|
82
|
+
cmd = Mixlib::ShellOut.new("vagrant --version")
|
83
|
+
cmd.run_command
|
84
|
+
cmd.stdout.split(' ')[1]
|
85
|
+
end
|
82
86
|
end
|
83
87
|
end
|
data/lib/bento/version.rb
CHANGED