vagrant-vbguest 0.15.0 → 0.15.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7395a0d81b5db0680c43be0e2f2fa2da32119f04
4
- data.tar.gz: 663911f4c047ac27dd6bf584f94abfc390bccbb5
3
+ metadata.gz: c37881d21a287efc3cf0a6807007018dd71592a8
4
+ data.tar.gz: '0882d9cbc9259036688f32a9398c4fca9774bf6f'
5
5
  SHA512:
6
- metadata.gz: 8c0d679c68794172a9cc38510f267285c0bbeaf3345da803952ebad9be991e592df06affc2e6aeb896c2771fe9d4fbe1263584287ef51c1e092f5eacdf04942e
7
- data.tar.gz: 77d86630ec438895c93dc4c4531d0ad7c62a1b2444372bc87b8b4fa5ac92705a9c03aba877e303d816ed02767be5894545f47cb505036de7d97beb440c839482
6
+ metadata.gz: 30a614fd427d0810274dfe109db01c2d0451d484d3da6a79f2f0eb06ca913d4b3e10cc1f194e45dac971038c7b2fafcad2aa859a94c54000eed057564e6c5b27
7
+ data.tar.gz: d27af0ae78ddee7723c4bbca441d4723429a5525372a470a6dd75aebb90505290880803d3b2a07452722de2353ef95cd0bcab233b73b7317884b32afa2a1c9d0
@@ -1,8 +1,12 @@
1
+ ## 0.15.1 (2018-01-08)
2
+
3
+ - Fix disabling `yes |` via options. Thanks @davidjb [GH-280]
4
+
1
5
  ## 0.15.0 (2017-09-21)
2
6
 
3
7
  - Interactive userinputs from the installer run will be answered with "yes" by default. Thanks @jerr0328 [GH-268], [GH-267]
4
8
  - Added logging of mounting/umounting VBoxGuestAdditions.iso file. Thanks @m03 [GH-249]
5
- - Updates remote location of develeopment dependencies.
9
+ - Updates remote location of development dependencies.
6
10
 
7
11
  ## 0.14.2 (2017-05-09)
8
12
 
data/Readme.md CHANGED
@@ -3,8 +3,8 @@
3
3
  *vagrant-vbguest* is a [Vagrant](http://vagrantup.com) plugin which automatically installs the host's VirtualBox Guest Additions on the guest system.
4
4
 
5
5
  [![Join the chat at https://gitter.im/dotless-de/vagrant-vbguest](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/dotless-de/vagrant-vbguest?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
6
- [![Code Climate](https://codeclimate.com/github/dotless-de/vagrant-vbguest.png)](https://codeclimate.com/github/dotless-de/vagrant-vbguest)
7
- [![Dependency Status](https://gemnasium.com/dotless-de/vagrant-vbguest.png)](https://gemnasium.com/dotless-de/vagrant-vbguest)
6
+ [![Code Climate](https://codeclimate.com/github/dotless-de/vagrant-vbguest.svg)](https://codeclimate.com/github/dotless-de/vagrant-vbguest)
7
+ [![Dependency Status](https://gemnasium.com/dotless-de/vagrant-vbguest.svg)](https://gemnasium.com/dotless-de/vagrant-vbguest)
8
8
  [![Inline docs](http://inch-ci.org/github/dotless-de/vagrant-vbguest.svg?branch=master)](http://inch-ci.org/github/dotless-de/vagrant-vbguest)
9
9
  [![Gem Version](https://badge.fury.io/rb/vagrant-vbguest.svg)](https://badge.fury.io/rb/vagrant-vbguest)
10
10
 
@@ -49,7 +49,7 @@ Vagrant::Config.run do |config|
49
49
  # or an URL:
50
50
  # config.vbguest.iso_path = "http://company.server/VirtualBox/%{version}/VBoxGuestAdditions.iso"
51
51
  # or relative to the Vagrantfile:
52
- # config.vbguest.iso_path = File.expand_path("../relative/path/to/VBoxGuestAdditions.iso", __FILE__)
52
+ # config.vbguest.iso_path = "../relative/path/to/VBoxGuestAdditions.iso"
53
53
 
54
54
  # set auto_update to false, if you do NOT want to check the correct
55
55
  # additions version when booting this machine
@@ -223,12 +223,13 @@ module VagrantVbguest
223
223
 
224
224
  # Determine if yes needs to be called or not
225
225
  def yes
226
- # Simple yes if explicity boolean true
227
- return "yes | " if !!@yes == @yes && @yes
226
+ value = @options[:yes]
227
+ # Simple yes if explicitly boolean true
228
+ return "yes | " if !!value == value && value
228
229
  # Nothing if set to false
229
- return "" if !@yes
230
+ return "" if !value
230
231
  # Otherwise pass input string to yes
231
- "yes @#{yes} | "
232
+ "yes #{value} | "
232
233
  end
233
234
 
234
235
  # A generic helper method for mounting the GuestAdditions iso file
@@ -1,3 +1,3 @@
1
1
  module VagrantVbguest
2
- VERSION = "0.15.0"
2
+ VERSION = "0.15.1"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-vbguest
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.15.0
4
+ version: 0.15.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Robert Schulze
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-09-21 00:00:00.000000000 Z
11
+ date: 2018-01-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: micromachine
@@ -131,7 +131,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
131
131
  version: 1.3.6
132
132
  requirements: []
133
133
  rubyforge_project:
134
- rubygems_version: 2.5.2
134
+ rubygems_version: 2.6.13
135
135
  signing_key:
136
136
  specification_version: 4
137
137
  summary: A Vagrant plugin to install the VirtualBoxAdditions into the guest VM