vagrant-parallels 2.2.1 → 2.2.2
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 +5 -0
- data/README.md +1 -4
- data/lib/vagrant-parallels/cap/mount_options.rb +1 -0
- data/lib/vagrant-parallels/synced_folder.rb +4 -2
- data/lib/vagrant-parallels/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: d138c790174855049184943ea5dada1b980eee3755f88f5e20059a2851fb2aa9
|
4
|
+
data.tar.gz: 277e1c323a916c085f4b45fed9ede685b1587246ace3e703a89b33038b59147f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ee07c96b1a45d301d37b2c633e71ac176ca4859cf40d92cfd772d5549892a1edb64a74897270d9819f2ea0fe3f9a2a3916a447a65b60fd084100e06bcf86ef45
|
7
|
+
data.tar.gz: b963b62e1d1b86e89eb7d78c088881a9ae399fb529928fdb030ba921cd0d32f9b660529e160b1bb8f229d077fcc2a71df4cb90518f4a067e7fe2269447ed96dd
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -8,10 +8,7 @@ allowing to manage [Parallels Desktop](https://www.parallels.com/products/deskto
|
|
8
8
|
virtual machines on macOS hosts.
|
9
9
|
|
10
10
|
### Requirements
|
11
|
-
- [Vagrant v1.
|
12
|
-
(_there are known issues with Vagrant v1.9.5
|
13
|
-
[[GH-297](https://github.com/Parallels/vagrant-parallels/issues/297#issuecomment-304458691)]
|
14
|
-
and v1.9.6 [[GH-301]](https://github.com/Parallels/vagrant-parallels/issues/301)_)
|
11
|
+
- [Vagrant v1.9.7](https://www.vagrantup.com) or higher
|
15
12
|
- [Parallels Desktop 11 for Mac](https://www.parallels.com/products/desktop/) or higher
|
16
13
|
|
17
14
|
*Note:* Only **Pro** and **Business** editions of **Parallels Desktop for Mac**
|
@@ -9,8 +9,8 @@ module VagrantPlugins
|
|
9
9
|
machine.provider_config.functional_psf
|
10
10
|
end
|
11
11
|
|
12
|
-
def
|
13
|
-
#
|
12
|
+
def prepare(machine, folders, _opts)
|
13
|
+
# Setup shared folder definitions in the VM config.
|
14
14
|
defs = []
|
15
15
|
folders.each do |id, data|
|
16
16
|
hostpath = data[:hostpath]
|
@@ -25,7 +25,9 @@ module VagrantPlugins
|
|
25
25
|
end
|
26
26
|
|
27
27
|
driver(machine).share_folders(defs)
|
28
|
+
end
|
28
29
|
|
30
|
+
def enable(machine, folders, _opts)
|
29
31
|
# short guestpaths first, so we don't step on ourselves
|
30
32
|
folders = folders.sort_by do |id, data|
|
31
33
|
if data[:guestpath]
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vagrant-parallels
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.2.
|
4
|
+
version: 2.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mikhail Zholobov
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2021-
|
12
|
+
date: 2021-06-23 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: nokogiri
|