vagrant-rsync 0.2.1 → 0.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 +15 -0
- data/lib/vagrant-rsync/errors.rb +10 -1
- data/lib/vagrant-rsync/version.rb +1 -1
- metadata +35 -52
checksums.yaml
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
---
|
|
2
|
+
!binary "U0hBMQ==":
|
|
3
|
+
metadata.gz: !binary |-
|
|
4
|
+
NDhiNDE0MzRkODZhZDhkY2JjNjhmMDdkMjU0OGU5NmM4ZjVjOTYwYQ==
|
|
5
|
+
data.tar.gz: !binary |-
|
|
6
|
+
MmRkNzdkYmZkNDk3MDY5YjRhNWJiNGRiMjFjZWRiYTIxM2QxOGU5MQ==
|
|
7
|
+
SHA512:
|
|
8
|
+
metadata.gz: !binary |-
|
|
9
|
+
YTA5ZWI4ZTQ5NWRkOWU2ZjY0YzU0YWJhNGM4YmFhYjQ0ODhiNTFiODMzNjg4
|
|
10
|
+
Y2YwYzhhNmU0NWE0YjFhNDUxODU0YmY5YWM5MmU4ZjA1NjA2ZTEzZGQ1NGRm
|
|
11
|
+
ZGI5NGIzNzIyYzE1M2MyZmUzYjE1MTAyNDk0MzQ0MDVjZWRjOWU=
|
|
12
|
+
data.tar.gz: !binary |-
|
|
13
|
+
NGZhYzVhNWRkNDUyM2IwMDU0MTQ3NzZlZWU2N2E0MDkxMGEzZDU2NjcyNDAz
|
|
14
|
+
ZjYxODQzNzY4OTVjMmE4YTczZWM1MTVkNTZjODEyN2ZkMWI5OGZmN2Q0NDhl
|
|
15
|
+
ZDgwOTdiM2NhMGM3NTZkOTBlMWEyOWQzZjQ0MTliYTc5MjA3Y2Q=
|
data/lib/vagrant-rsync/errors.rb
CHANGED
|
@@ -1,9 +1,18 @@
|
|
|
1
1
|
module VagrantPlugins
|
|
2
2
|
module Rsync
|
|
3
3
|
module Errors
|
|
4
|
-
class
|
|
4
|
+
class VagrantRsyncError < Vagrant::Errors::VagrantError
|
|
5
|
+
error_namespace("vagrant_rsync.errors")
|
|
6
|
+
end
|
|
7
|
+
|
|
8
|
+
class RsyncNotAvailableError < VagrantRsyncError
|
|
5
9
|
error_key(:rsync_not_available)
|
|
6
10
|
end
|
|
11
|
+
|
|
12
|
+
class RsyncFailed < VagrantRsyncError
|
|
13
|
+
error_key(:rsync_failed)
|
|
14
|
+
end
|
|
15
|
+
|
|
7
16
|
end
|
|
8
17
|
end
|
|
9
18
|
end
|
metadata
CHANGED
|
@@ -1,46 +1,39 @@
|
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: vagrant-rsync
|
|
3
|
-
version: !ruby/object:Gem::Version
|
|
4
|
-
|
|
5
|
-
segments:
|
|
6
|
-
- 0
|
|
7
|
-
- 2
|
|
8
|
-
- 1
|
|
9
|
-
version: 0.2.1
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.2.2
|
|
10
5
|
platform: ruby
|
|
11
|
-
authors:
|
|
6
|
+
authors:
|
|
12
7
|
- Bill Cromie
|
|
13
8
|
- Patrick Connolly
|
|
14
9
|
autorequire:
|
|
15
10
|
bindir: bin
|
|
16
11
|
cert_chain: []
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
dependencies:
|
|
21
|
-
- !ruby/object:Gem::Dependency
|
|
22
|
-
type: :development
|
|
23
|
-
version_requirements: &id001 !ruby/object:Gem::Requirement
|
|
24
|
-
requirements:
|
|
25
|
-
- - ">="
|
|
26
|
-
- !ruby/object:Gem::Version
|
|
27
|
-
segments:
|
|
28
|
-
- 0
|
|
29
|
-
version: "0"
|
|
12
|
+
date: 2013-12-22 00:00:00.000000000 Z
|
|
13
|
+
dependencies:
|
|
14
|
+
- !ruby/object:Gem::Dependency
|
|
30
15
|
name: rake
|
|
31
|
-
requirement:
|
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
|
17
|
+
requirements:
|
|
18
|
+
- - ! '>='
|
|
19
|
+
- !ruby/object:Gem::Version
|
|
20
|
+
version: '0'
|
|
21
|
+
type: :development
|
|
32
22
|
prerelease: false
|
|
33
|
-
|
|
34
|
-
|
|
23
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
24
|
+
requirements:
|
|
25
|
+
- - ! '>='
|
|
26
|
+
- !ruby/object:Gem::Version
|
|
27
|
+
version: '0'
|
|
28
|
+
description: Enables Vagrant to rsync shared folders on remote guests with grace and
|
|
29
|
+
aplomb.
|
|
30
|
+
email:
|
|
35
31
|
- bill@cromie.org
|
|
36
32
|
- patrick@myplanetdigital.com
|
|
37
33
|
executables: []
|
|
38
|
-
|
|
39
34
|
extensions: []
|
|
40
|
-
|
|
41
35
|
extra_rdoc_files: []
|
|
42
|
-
|
|
43
|
-
files:
|
|
36
|
+
files:
|
|
44
37
|
- Gemfile
|
|
45
38
|
- Guardfile
|
|
46
39
|
- lib/vagrant-rsync/cap/ensure_rsync.rb
|
|
@@ -57,37 +50,27 @@ files:
|
|
|
57
50
|
- vagrant-rsync.gemspec
|
|
58
51
|
- Vagrantfile.testing
|
|
59
52
|
- .gitignore
|
|
60
|
-
has_rdoc: true
|
|
61
53
|
homepage: https://github.com/cromulus/vagrant-rsync
|
|
62
54
|
licenses: []
|
|
63
|
-
|
|
55
|
+
metadata: {}
|
|
64
56
|
post_install_message:
|
|
65
57
|
rdoc_options: []
|
|
66
|
-
|
|
67
|
-
require_paths:
|
|
58
|
+
require_paths:
|
|
68
59
|
- lib
|
|
69
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
|
70
|
-
requirements:
|
|
71
|
-
- -
|
|
72
|
-
- !ruby/object:Gem::Version
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
- - ">="
|
|
79
|
-
- !ruby/object:Gem::Version
|
|
80
|
-
segments:
|
|
81
|
-
- 1
|
|
82
|
-
- 3
|
|
83
|
-
- 6
|
|
60
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
61
|
+
requirements:
|
|
62
|
+
- - ! '>='
|
|
63
|
+
- !ruby/object:Gem::Version
|
|
64
|
+
version: '0'
|
|
65
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
66
|
+
requirements:
|
|
67
|
+
- - ! '>='
|
|
68
|
+
- !ruby/object:Gem::Version
|
|
84
69
|
version: 1.3.6
|
|
85
70
|
requirements: []
|
|
86
|
-
|
|
87
71
|
rubyforge_project: vagrant-rsync
|
|
88
|
-
rubygems_version: 1.
|
|
72
|
+
rubygems_version: 2.1.11
|
|
89
73
|
signing_key:
|
|
90
|
-
specification_version:
|
|
74
|
+
specification_version: 4
|
|
91
75
|
summary: Enables Vagrant to rsync shared folders on remote guests with grace and aplomb.
|
|
92
76
|
test_files: []
|
|
93
|
-
|