vagrant-bindfs 0.4.2 → 0.4.3

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: 66fe9ef2425e37e0bebdab608de94fff8db26bbd
4
- data.tar.gz: 214689732bf62da3d98d6a0f767ed96ba2c3920d
3
+ metadata.gz: 11ff91b2336c0411e50fd703acd8d5e6ad48661e
4
+ data.tar.gz: a124f67f87f2a71bfa52c24f6966a3d74edfbb6e
5
5
  SHA512:
6
- metadata.gz: 7b6352b4b24398070c2da137e14dbf90cfd5253b9bcf6fd64cc486291b5d38aee58466d4a4c6f06b0c88acb700a08b7fa9632810a8d4cab9de2a422ba422270f
7
- data.tar.gz: 887b967d2d3e89911b91ef731bb4e8204bdd057c3283656bf2ce1a058329dd38d12fc6d9cb4151a40ebe2405050286c8e15ebec037a5b787d0b6f5ca18cfd93f
6
+ metadata.gz: 2418de12bcb59623f33bc3d695f4a319c81b84e052e527275fba2b68cc2bdf2c9752d59950781e153ba3d3094128b57a40ba3b6a2f2437603bfab1b98c0f2b04
7
+ data.tar.gz: aba7cb77a5c744f28fdf49c3009b96f07e0d2081dc81e277f62392c0b831eb5f817f1873f47e4a4c91d975b38c0ee879ea697673a1a9aea63fa9392a4265c0bc
@@ -62,7 +62,7 @@ module VagrantPlugins
62
62
  next
63
63
  end
64
64
 
65
- if @machine.communicate.test("mount | grep bindfs | grep #{command.destination}")
65
+ if @machine.communicate.test("mount | grep '^bindfs' | grep #{command.destination}")
66
66
  @env[:ui].info I18n.t(
67
67
  "vagrant.config.bindfs.already_mounted",
68
68
  dest: command.destination
@@ -1,6 +1,6 @@
1
1
  module VagrantPlugins
2
2
  module Bindfs
3
- VERSION = "0.4.2"
3
+ VERSION = "0.4.3"
4
4
  SOURCE_VERSION = "1.12.6"
5
5
  end
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-bindfs
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.2
4
+ version: 0.4.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gaël-Ian Havard
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2015-07-22 00:00:00.000000000 Z
13
+ date: 2015-08-31 00:00:00.000000000 Z
14
14
  dependencies: []
15
15
  description: A Vagrant plugin to automate bindfs mount in the VM. This allow you to
16
16
  change owner, group and permissions on files and, for example, work around NFS share
@@ -22,6 +22,9 @@ executables: []
22
22
  extensions: []
23
23
  extra_rdoc_files: []
24
24
  files:
25
+ - MIT-LICENSE
26
+ - README.md
27
+ - lib/vagrant-bindfs.rb
25
28
  - lib/vagrant-bindfs/bind.rb
26
29
  - lib/vagrant-bindfs/cap/debian/install_bindfs.rb
27
30
  - lib/vagrant-bindfs/cap/fedora/install_bindfs.rb
@@ -36,10 +39,7 @@ files:
36
39
  - lib/vagrant-bindfs/errors.rb
37
40
  - lib/vagrant-bindfs/plugin.rb
38
41
  - lib/vagrant-bindfs/version.rb
39
- - lib/vagrant-bindfs.rb
40
42
  - locales/en.yml
41
- - README.md
42
- - MIT-LICENSE
43
43
  homepage: https://github.com/gael-ian/vagrant-bindfs
44
44
  licenses:
45
45
  - MIT
@@ -50,17 +50,17 @@ require_paths:
50
50
  - lib
51
51
  required_ruby_version: !ruby/object:Gem::Requirement
52
52
  requirements:
53
- - - '>='
53
+ - - ">="
54
54
  - !ruby/object:Gem::Version
55
55
  version: '0'
56
56
  required_rubygems_version: !ruby/object:Gem::Requirement
57
57
  requirements:
58
- - - '>='
58
+ - - ">="
59
59
  - !ruby/object:Gem::Version
60
60
  version: '0'
61
61
  requirements: []
62
62
  rubyforge_project:
63
- rubygems_version: 2.0.14
63
+ rubygems_version: 2.2.2
64
64
  signing_key:
65
65
  specification_version: 4
66
66
  summary: A Vagrant plugin to automate bindfs mount in the VM