vagrant-reflect 0.4.0 → 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a125c9d631f0aa19172f28895bacb5a8e243c372
4
- data.tar.gz: 124396c75e4bb6d37cf44ab64426dd9a496517b0
3
+ metadata.gz: 66d27cb983d7227c7e1c865436870fec9a701e11
4
+ data.tar.gz: 32c2febf5d284030c01bcdf65a96d7d5c5605baa
5
5
  SHA512:
6
- metadata.gz: 4a90cb48ce6ef31359cb746cca2930ffeaa3a8a2844c8cc4b662a57efe1bab7900cb0871cd59654996530e231b9c42f13305226351bcdd0586936b2ffe09dab6
7
- data.tar.gz: ca55fd199a30b59757018e2f502ba70b77568558cd76e44439905d596f8ace5619fee25d3e9d7c0522fc33ab5e0ec2bee6aa86a04f68dd4546e4298421a1bf78
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
- @rsync_command = ['rsync']
146
- @rsync_command += Array(@opts[:args]).dup if @opts[:args]
147
- @rsync_command ||= [
148
- '--verbose', '--archive', '--delete', '-z', '--copy-links']
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 << '-e'
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
@@ -1,3 +1,3 @@
1
1
  module VagrantReflect
2
- VERSION = '0.4.0'
2
+ VERSION = '0.5.0'
3
3
  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.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-27 00:00:00.000000000 Z
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: