vagrant-bindfs 1.3.0 → 1.3.1
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 +4 -4
- data/CHANGELOG.md +6 -0
- data/lib/vagrant-bindfs/vagrant/actions/mounter.rb +1 -1
- data/lib/vagrant-bindfs/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7c04ce40b98593e640f85659cae56352246df505d58442e0be0a109acf9b7032
|
|
4
|
+
data.tar.gz: aef4916a5a0985479bf6521033aa60bb0e19f4c7c03b291091d2e4f5a8952dbf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bf91071e3c8d6c012f0ff379d2e0aa33c6eceea8020c1880a5fe04357174b4150d8b24ebeed424f359243450f607b56c054c997a48c0ac39750edca909598e77
|
|
7
|
+
data.tar.gz: '07458228cf239c7eb33a0f4af0f1338fa8fc4f7f9726f1e47f8e010302de6e16021aa647bfc942d94f47c84cc58dd39e2c76d16c907c19529c477f7fed9dff00'
|
data/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## Version 1.3.1 (2024-08-24)
|
|
10
|
+
|
|
11
|
+
## Fixed
|
|
12
|
+
|
|
13
|
+
* Rollback uses of Ruby 3.1+ syntaxic sugar for compatibility with Ruby 3.0 (#111)
|
|
14
|
+
|
|
9
15
|
## Version 1.3.0 (2024-08-23)
|
|
10
16
|
|
|
11
17
|
### Breaking changes
|
|
@@ -27,7 +27,7 @@ module VagrantBindfs
|
|
|
27
27
|
protected
|
|
28
28
|
|
|
29
29
|
def bind_folders!
|
|
30
|
-
info I18n.t('vagrant-bindfs.actions.mounter.start', hook:)
|
|
30
|
+
info I18n.t('vagrant-bindfs.actions.mounter.start', hook: hook)
|
|
31
31
|
bound_folders(hook).each_value do |folder|
|
|
32
32
|
bind_folder!(folder)
|
|
33
33
|
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.3.
|
|
4
|
+
version: 1.3.1
|
|
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: 2024-08-
|
|
13
|
+
date: 2024-08-24 00:00:00.000000000 Z
|
|
14
14
|
dependencies: []
|
|
15
15
|
description: " A Vagrant plugin to automate bindfs mount in the VM. Allows you to
|
|
16
16
|
change owner, group and permissions on files and work around NFS share permissions
|