vagrant-reflect 0.4.0 → 0.5.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/lib/vagrant-reflect/util/syncer.rb +7 -6
- data/lib/vagrant-reflect/version.rb +1 -1
- metadata +12 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 66d27cb983d7227c7e1c865436870fec9a701e11
|
|
4
|
+
data.tar.gz: 32c2febf5d284030c01bcdf65a96d7d5c5605baa
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 52e52ddd6a1f6e89a25315db18331889084410bd155379fb1ed191347b1158da8ab745374ccd112a6378c17ed878806f69ba9df680f42860c7db389f6a22a65c
|
|
7
|
+
data.tar.gz: f6a615a2a60df6b78b5367cdc25275edd40d9b2faf6af354d7e74a4518c1ee39ac2edd8fe18a61394109ef3229cbf5bdb408a931076c6d082aa3f6a3ada2de46
|
|
@@ -142,10 +142,12 @@ module VagrantReflect
|
|
|
142
142
|
|
|
143
143
|
def init_rsync_command
|
|
144
144
|
# Get the command-line arguments
|
|
145
|
-
@
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
145
|
+
if @opts[:args]
|
|
146
|
+
@rsync_command = ['rsync'] + Array(@opts[:args]).dup
|
|
147
|
+
else
|
|
148
|
+
@rsync_command = [
|
|
149
|
+
'rsync', '--verbose', '--archive', '--delete', '-z', '--copy-links']
|
|
150
|
+
end
|
|
149
151
|
|
|
150
152
|
# On Windows, we have to set a default chmod flag to avoid permission
|
|
151
153
|
# issues
|
|
@@ -153,8 +155,7 @@ module VagrantReflect
|
|
|
153
155
|
|
|
154
156
|
build_owner_args
|
|
155
157
|
|
|
156
|
-
@rsync_command
|
|
157
|
-
@rsync_command << @rsh.join(' ')
|
|
158
|
+
@rsync_command += ['-e', @rsh.join(' ')]
|
|
158
159
|
|
|
159
160
|
@excludes.map { |e| @rsync_command += ['--exclude', e] }
|
|
160
161
|
end
|
metadata
CHANGED
|
@@ -1,27 +1,33 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: vagrant-reflect
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.5.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jason Woods
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-03-
|
|
11
|
+
date: 2016-03-31 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: driskell-listen
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
|
-
- -
|
|
17
|
+
- - ~>
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: 3.0.6
|
|
20
|
+
- - '>='
|
|
18
21
|
- !ruby/object:Gem::Version
|
|
19
22
|
version: 3.0.6.11
|
|
20
23
|
type: :runtime
|
|
21
24
|
prerelease: false
|
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
26
|
requirements:
|
|
24
|
-
- -
|
|
27
|
+
- - ~>
|
|
28
|
+
- !ruby/object:Gem::Version
|
|
29
|
+
version: 3.0.6
|
|
30
|
+
- - '>='
|
|
25
31
|
- !ruby/object:Gem::Version
|
|
26
32
|
version: 3.0.6.11
|
|
27
33
|
description: Vagrant Reflect
|
|
@@ -48,12 +54,12 @@ require_paths:
|
|
|
48
54
|
- lib
|
|
49
55
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
50
56
|
requirements:
|
|
51
|
-
- -
|
|
57
|
+
- - '>='
|
|
52
58
|
- !ruby/object:Gem::Version
|
|
53
59
|
version: '0'
|
|
54
60
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
55
61
|
requirements:
|
|
56
|
-
- -
|
|
62
|
+
- - '>='
|
|
57
63
|
- !ruby/object:Gem::Version
|
|
58
64
|
version: '0'
|
|
59
65
|
requirements: []
|
|
@@ -63,4 +69,3 @@ signing_key:
|
|
|
63
69
|
specification_version: 4
|
|
64
70
|
summary: A better vagrant rsync-auto
|
|
65
71
|
test_files: []
|
|
66
|
-
has_rdoc:
|