bento-ya 0.1.3 → 0.1.4

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 42ec8761debb2d20e3edb010680ea3f7433262bd
4
- data.tar.gz: 30752ff0ce2b4826f6a955a9227689108cc4fcd2
3
+ metadata.gz: 6e04c6c78424c7c84671934d4a8c136e8b541a84
4
+ data.tar.gz: 06a45a721b281df3715d595f81608331f1644795
5
5
  SHA512:
6
- metadata.gz: 551defabbca5280b71d477a9ceec8035556013fa1f298f08e09aa3c770b20a6dbbfd2a36107bc78137d1b3d03fa5e3cabc8416f8cfff1c0c92102a4929da7b9b
7
- data.tar.gz: d3d9ffb2805eb940b50c3613f49ad741096f26b3dc970c6c6f29e41d4492a67d84a8ac21a14a9a50729d45536806ba104e350bee974a6221db944605a6d0117f
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)
@@ -76,8 +76,12 @@ class BuildMetadata
76
76
  end
77
77
 
78
78
  def vagrant_ver
79
- cmd = Mixlib::ShellOut.new("vagrant --version")
80
- cmd.run_command
81
- cmd.stdout.split(' ')[1]
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
@@ -1,3 +1,3 @@
1
1
  module Bento
2
- VERSION = "0.1.3"
2
+ VERSION = "0.1.4"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bento-ya
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Seth Thomas