vagrant-bindfs 1.0.6 → 1.0.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (52) hide show
  1. checksums.yaml +4 -4
  2. data/Rakefile +1 -0
  3. data/Vagrantfile +1 -0
  4. data/lib/vagrant-bindfs.rb +1 -0
  5. data/lib/vagrant-bindfs/bindfs.rb +2 -1
  6. data/lib/vagrant-bindfs/bindfs/command.rb +1 -0
  7. data/lib/vagrant-bindfs/bindfs/folder.rb +1 -0
  8. data/lib/vagrant-bindfs/bindfs/option_definitions.json +1 -0
  9. data/lib/vagrant-bindfs/bindfs/option_set.rb +1 -0
  10. data/lib/vagrant-bindfs/bindfs/validators.rb +1 -0
  11. data/lib/vagrant-bindfs/bindfs/validators/config.rb +1 -0
  12. data/lib/vagrant-bindfs/bindfs/validators/runtime.rb +1 -0
  13. data/lib/vagrant-bindfs/vagrant.rb +1 -0
  14. data/lib/vagrant-bindfs/vagrant/actions.rb +1 -0
  15. data/lib/vagrant-bindfs/vagrant/actions/concerns.rb +1 -0
  16. data/lib/vagrant-bindfs/vagrant/actions/concerns/log.rb +1 -0
  17. data/lib/vagrant-bindfs/vagrant/actions/concerns/machine.rb +1 -0
  18. data/lib/vagrant-bindfs/vagrant/actions/installer.rb +1 -0
  19. data/lib/vagrant-bindfs/vagrant/actions/mounter.rb +1 -0
  20. data/lib/vagrant-bindfs/vagrant/capabilities.rb +1 -0
  21. data/lib/vagrant-bindfs/vagrant/capabilities/all.rb +1 -0
  22. data/lib/vagrant-bindfs/vagrant/capabilities/all/bindfs.rb +1 -0
  23. data/lib/vagrant-bindfs/vagrant/capabilities/all/package_manager.rb +1 -0
  24. data/lib/vagrant-bindfs/vagrant/capabilities/all/system_checks.rb +1 -0
  25. data/lib/vagrant-bindfs/vagrant/capabilities/darwin.rb +1 -0
  26. data/lib/vagrant-bindfs/vagrant/capabilities/darwin/bindfs.rb +1 -0
  27. data/lib/vagrant-bindfs/vagrant/capabilities/darwin/fuse.rb +1 -0
  28. data/lib/vagrant-bindfs/vagrant/capabilities/darwin/package_manager.rb +1 -0
  29. data/lib/vagrant-bindfs/vagrant/capabilities/darwin/system_checks.rb +1 -0
  30. data/lib/vagrant-bindfs/vagrant/capabilities/debian.rb +1 -0
  31. data/lib/vagrant-bindfs/vagrant/capabilities/debian/bindfs.rb +1 -0
  32. data/lib/vagrant-bindfs/vagrant/capabilities/debian/fuse.rb +1 -0
  33. data/lib/vagrant-bindfs/vagrant/capabilities/debian/package_manager.rb +1 -0
  34. data/lib/vagrant-bindfs/vagrant/capabilities/linux.rb +1 -0
  35. data/lib/vagrant-bindfs/vagrant/capabilities/linux/fuse.rb +1 -0
  36. data/lib/vagrant-bindfs/vagrant/capabilities/linux/package_manager.rb +1 -0
  37. data/lib/vagrant-bindfs/vagrant/capabilities/linux/system_checks.rb +1 -0
  38. data/lib/vagrant-bindfs/vagrant/capabilities/redhat.rb +1 -0
  39. data/lib/vagrant-bindfs/vagrant/capabilities/redhat/bindfs.rb +1 -0
  40. data/lib/vagrant-bindfs/vagrant/capabilities/redhat/fuse.rb +1 -0
  41. data/lib/vagrant-bindfs/vagrant/capabilities/redhat/package_manager.rb +1 -0
  42. data/lib/vagrant-bindfs/vagrant/capabilities/suse.rb +1 -0
  43. data/lib/vagrant-bindfs/vagrant/capabilities/suse/bindfs.rb +1 -0
  44. data/lib/vagrant-bindfs/vagrant/capabilities/suse/fuse.rb +1 -0
  45. data/lib/vagrant-bindfs/vagrant/capabilities/suse/package_manager.rb +1 -0
  46. data/lib/vagrant-bindfs/vagrant/capabilities/ubuntu.rb +1 -0
  47. data/lib/vagrant-bindfs/vagrant/capabilities/ubuntu/fuse.rb +1 -0
  48. data/lib/vagrant-bindfs/vagrant/config.rb +2 -1
  49. data/lib/vagrant-bindfs/vagrant/errors.rb +1 -0
  50. data/lib/vagrant-bindfs/vagrant/plugin.rb +2 -1
  51. data/lib/vagrant-bindfs/version.rb +2 -1
  52. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9c0ff0aa65fd9698377920a851ded8d945c5529a
4
- data.tar.gz: 1ce0f2a45e6e0b0acee8226420c0c9f77d301134
3
+ metadata.gz: 0e4ecd3195ac921285fbdb432fe28c3e4420f4eb
4
+ data.tar.gz: 05bc3a386e5f62a103af7ab66b44adedd8272a81
5
5
  SHA512:
6
- metadata.gz: 818a82bc45e531d07be736a581246ce37eb29f83ff5726734e1a20c9932cf406425fc1831e28a22052f173290b4d57536d2d3dbb7fc672b9a34ed941f259dc15
7
- data.tar.gz: c4f1c0c67cf391d754aa1aa58d1ff3ca73bda51b763edad4dcda8ace041d46cc02be90007bc455d08732fb3d7c07ef5d7a5744c7abc4769535e2cbc257e05f5c
6
+ metadata.gz: d0062985acb5f7e156bb9c56d9d0827ee2676f0a2193cb9572e962064a527c918ccb1b66ffb1cd9bd501bdeb16680414ead26927a9373e86e1776c410af8720a
7
+ data.tar.gz: 2fc8a010c70c708ad6b9e0dec518cc7703154cc52e6c5dc2905117fa9dbfc7175d980eebff0096eeebdca9158ed35e723cf81650cae00e2c52b035abfedb1f8b
data/Rakefile CHANGED
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  require 'rubygems'
3
4
  require 'bundler/setup'
4
5
  require 'rspec/core/rake_task'
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  # -*- mode: ruby -*-
3
4
  # vi: set ft=ruby :
4
5
 
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  begin
3
4
  require 'vagrant'
4
5
  rescue LoadError
@@ -1,7 +1,8 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  module VagrantBindfs
3
4
  module Bindfs
4
- SOURCE_VERSION = '1.13.6'
5
+ SOURCE_VERSION = '1.13.7'
5
6
  SOURCE_URLS = [
6
7
  'http://bindfs.org/downloads/bindfs-%{bindfs_version}.tar.gz',
7
8
  'http://bindfs.dnsalias.net/downloads/bindfs-%{bindfs_version}.tar.gz'
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  module VagrantBindfs
3
4
  module Bindfs
4
5
  class Command
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  require 'digest/sha1'
3
4
 
4
5
  module VagrantBindfs
@@ -58,6 +58,7 @@
58
58
  "realistic-permissions": { "long": ["realistic-permissions"], "short": [], "type": "flag", "since": "1.10" },
59
59
  "ctime-from-mtime": { "long": ["ctime-from-mtime"], "short": [], "type": "flag", "since": "0.0.1" },
60
60
  "enabe-ioctl": { "long": ["enable-ioctl"], "short": [], "type": "flag", "since": "1.13.2" },
61
+ "block-devices-as-files": { "long": ["block-devices-as-files"], "short": [], "type": "flag", "since": "1.13.7" },
61
62
 
62
63
  // FUSE options
63
64
  "o": { "long": [], "short": ["o"], "type": "option", "since": "0.0.1" },
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  require 'enumerator'
3
4
  require 'forwardable'
4
5
 
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  module VagrantBindfs
3
4
  module Bindfs
4
5
  module Validators
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  require 'forwardable'
3
4
 
4
5
  module VagrantBindfs
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  module VagrantBindfs
3
4
  module Bindfs
4
5
  module Validators
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  module VagrantBindfs
3
4
  module Vagrant
4
5
  autoload :Plugin, 'vagrant-bindfs/vagrant/plugin'
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  module VagrantBindfs
3
4
  module Vagrant
4
5
  module Actions
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  module VagrantBindfs
3
4
  module Vagrant
4
5
  module Actions
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  module VagrantBindfs
3
4
  module Vagrant
4
5
  module Actions
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  module VagrantBindfs
3
4
  module Vagrant
4
5
  module Actions
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  module VagrantBindfs
3
4
  module Vagrant
4
5
  module Actions
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  module VagrantBindfs
3
4
  module Vagrant
4
5
  module Actions
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  module VagrantBindfs
3
4
  module Vagrant
4
5
  module Capabilities
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  module VagrantBindfs
3
4
  module Vagrant
4
5
  module Capabilities
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  module VagrantBindfs
3
4
  module Vagrant
4
5
  module Capabilities
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  module VagrantBindfs
3
4
  module Vagrant
4
5
  module Capabilities
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  module VagrantBindfs
3
4
  module Vagrant
4
5
  module Capabilities
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  module VagrantBindfs
3
4
  module Vagrant
4
5
  module Capabilities
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  module VagrantBindfs
3
4
  module Vagrant
4
5
  module Capabilities
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  module VagrantBindfs
3
4
  module Vagrant
4
5
  module Capabilities
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  module VagrantBindfs
3
4
  module Vagrant
4
5
  module Capabilities
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  module VagrantBindfs
3
4
  module Vagrant
4
5
  module Capabilities
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  module VagrantBindfs
3
4
  module Vagrant
4
5
  module Capabilities
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  module VagrantBindfs
3
4
  module Vagrant
4
5
  module Capabilities
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  module VagrantBindfs
3
4
  module Vagrant
4
5
  module Capabilities
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  module VagrantBindfs
3
4
  module Vagrant
4
5
  module Capabilities
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  module VagrantBindfs
3
4
  module Vagrant
4
5
  module Capabilities
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  module VagrantBindfs
3
4
  module Vagrant
4
5
  module Capabilities
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  module VagrantBindfs
3
4
  module Vagrant
4
5
  module Capabilities
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  module VagrantBindfs
3
4
  module Vagrant
4
5
  module Capabilities
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  module VagrantBindfs
3
4
  module Vagrant
4
5
  module Capabilities
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  module VagrantBindfs
3
4
  module Vagrant
4
5
  module Capabilities
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  module VagrantBindfs
3
4
  module Vagrant
4
5
  module Capabilities
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  module VagrantBindfs
3
4
  module Vagrant
4
5
  module Capabilities
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  module VagrantBindfs
3
4
  module Vagrant
4
5
  module Capabilities
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  module VagrantBindfs
3
4
  module Vagrant
4
5
  module Capabilities
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  module VagrantBindfs
3
4
  module Vagrant
4
5
  module Capabilities
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  module VagrantBindfs
3
4
  module Vagrant
4
5
  module Capabilities
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  module VagrantBindfs
3
4
  module Vagrant
4
5
  module Capabilities
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  module VagrantBindfs
3
4
  module Vagrant
4
5
  module Capabilities
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  module VagrantBindfs
3
4
  module Vagrant
4
5
  class Config < ::Vagrant.plugin('2', :config)
@@ -56,7 +57,7 @@ module VagrantBindfs
56
57
  super.tap do |result|
57
58
  result.debug = (debug || other.debug)
58
59
 
59
- result_bindfs_version = [bindfs_version, other.bindfs_version].select { |v| v != UNSET_VALUE }.min
60
+ result_bindfs_version = [bindfs_version, other.bindfs_version].reject { |v| v == UNSET_VALUE }.min
60
61
  result.bindfs_version = result_bindfs_version unless result_bindfs_version.nil?
61
62
  result.install_bindfs_from_source = (install_bindfs_from_source || other.install_bindfs_from_source)
62
63
 
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  module VagrantBindfs
3
4
  module Vagrant
4
5
  class Error < ::Vagrant::Errors::VagrantError
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  module VagrantBindfs
3
4
  module Vagrant
4
5
  class Plugin < ::Vagrant.plugin('2')
@@ -13,7 +14,7 @@ module VagrantBindfs
13
14
 
14
15
  include Capabilities
15
16
 
16
- %w(up reload).each do |action|
17
+ %w[up reload].each do |action|
17
18
  action_hook(:bindfs, "machine_action_#{action}".to_sym) do |hook|
18
19
  hooks.each do |(name, middleware)|
19
20
  hook.before(middleware, Actions::Mounter, name)
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  module VagrantBindfs
3
- VERSION = '1.0.6'
4
+ VERSION = '1.0.7'
4
5
  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: 1.0.6
4
+ version: 1.0.7
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: 2017-03-25 00:00:00.000000000 Z
13
+ date: 2017-05-08 00:00:00.000000000 Z
14
14
  dependencies: []
15
15
  description: " A Vagrant plugin to automate bindfs mount in the VM. This allow you
16
16
  to change owner, group and permissions on files and, for example, work around NFS