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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 461039d21338e7042fb005d2490fa17fc369089e
4
- data.tar.gz: 16699e1e2d069a0e4c81ef954903a44f77e6a7cc
3
+ metadata.gz: 23df182466bd34328e19486f3cd9aa335fc4e197
4
+ data.tar.gz: e73a0a426e991d23203c50e80ee27b55f0e1b6bc
5
5
  SHA512:
6
- metadata.gz: 0626b5ee3d78752b6745f8531ed3b24a35430f34620c1a4feb9336a97ecbe78e794d5d6dff50af62f1a2c99f278ffd106a68f1f32747b90265200cf26d95d39f
7
- data.tar.gz: e627af659185f6a19fda0436e87dcc2d44e1bccf1e3df1b0ade9fd07884028f9929eccce88237c9859897360c500090bf64d2b2e511eefeec4001ec4a16bcb50
6
+ metadata.gz: 7d172404d49d4bbe5e1122eafcaf8673b3910f27963a7c70007a4c5b30800a4e723ebff22efefe0a7726a5807979cc6d8716c5e1fbc3c1611253be5bf77c30f9
7
+ data.tar.gz: ec440a43f7aae5eba917448215f3469cb4030d959f2b4c4ba5a7d0b5bef3646dc8390a79a3ebccb8fc1ff2a74e93540d685fbcc72bf4158f64e47abe89db6cf0
@@ -1,3 +1,7 @@
1
+ 0.3.0 - 2016-04-13
2
+ ==================
3
+ - Fix for "No such file or directory" on Windows host (#11)
4
+
1
5
  0.2.0 - 2015-07-14
2
6
  ==================
3
7
  - *Breaking change:* Minimum required Vagrant version changed to 1.7.3+
data/Gemfile CHANGED
@@ -1,7 +1,7 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
3
  group :development do
4
- gem "vagrant", git: "https://github.com/mitchellh/vagrant.git", ref: 'v1.6.3'
4
+ gem "vagrant", git: "https://github.com/mitchellh/vagrant.git", ref: 'v1.7.3'
5
5
  end
6
6
 
7
7
  group :plugins do
data/README.md CHANGED
@@ -68,7 +68,7 @@ running:
68
68
  $ vagrant plugin install vagrant-fsnotify
69
69
  ```
70
70
 
71
- [Vagrant][vagrant] version 1.5 or greater is required.
71
+ [Vagrant][vagrant] version 1.7.3 or greater is required.
72
72
 
73
73
  Usage
74
74
  -----
@@ -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?("/")
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module Fsnotify
3
- VERSION = "0.2.0"
3
+ VERSION = "0.3.0"
4
4
  end
5
5
  end
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.2.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: 2015-07-13 00:00:00.000000000 Z
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.4.8
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