vagrant-fsnotify 0.2.0 → 0.3.0
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 +4 -0
- data/Gemfile +1 -1
- data/README.md +1 -1
- data/lib/vagrant-fsnotify/command-fsnotify.rb +0 -5
- data/lib/vagrant-fsnotify/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 23df182466bd34328e19486f3cd9aa335fc4e197
|
|
4
|
+
data.tar.gz: e73a0a426e991d23203c50e80ee27b55f0e1b6bc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7d172404d49d4bbe5e1122eafcaf8673b3910f27963a7c70007a4c5b30800a4e723ebff22efefe0a7726a5807979cc6d8716c5e1fbc3c1611253be5bf77c30f9
|
|
7
|
+
data.tar.gz: ec440a43f7aae5eba917448215f3469cb4030d959f2b4c4ba5a7d0b5bef3646dc8390a79a3ebccb8fc1ff2a74e93540d685fbcc72bf4158f64e47abe89db6cf0
|
data/CHANGELOG.md
CHANGED
data/Gemfile
CHANGED
data/README.md
CHANGED
|
@@ -52,11 +52,6 @@ module VagrantPlugins::Fsnotify
|
|
|
52
52
|
hostpath = File.expand_path(hostpath, machine.env.root_path)
|
|
53
53
|
hostpath = Vagrant::Util::Platform.fs_real_path(hostpath).to_s
|
|
54
54
|
|
|
55
|
-
if Vagrant::Util::Platform.windows?
|
|
56
|
-
# rsync for Windows expects cygwin style paths, always.
|
|
57
|
-
hostpath = Vagrant::Util::Platform.cygwin_path(hostpath)
|
|
58
|
-
end
|
|
59
|
-
|
|
60
55
|
# Make sure the host path ends with a "/" to avoid creating
|
|
61
56
|
# a nested directory...
|
|
62
57
|
if !hostpath.end_with?("/")
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: vagrant-fsnotify
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.3.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Adrien Kohlbecker
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2016-04-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -81,7 +81,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
81
81
|
version: '0'
|
|
82
82
|
requirements: []
|
|
83
83
|
rubyforge_project:
|
|
84
|
-
rubygems_version: 2.
|
|
84
|
+
rubygems_version: 2.5.2
|
|
85
85
|
signing_key:
|
|
86
86
|
specification_version: 4
|
|
87
87
|
summary: Forward filesystem change notifications to your Vagrant VM
|