vagrant-rsync 0.2.4 → 0.2.5
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 +5 -13
- data/README.md +5 -1
- data/lib/vagrant-rsync/command.rb +1 -1
- data/lib/vagrant-rsync/plugin.rb +2 -0
- data/lib/vagrant-rsync/version.rb +1 -1
- metadata +13 -13
checksums.yaml
CHANGED
|
@@ -1,15 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
|
|
5
|
-
data.tar.gz: !binary |-
|
|
6
|
-
M2NhZjRjN2YxMjU3YWViNjNjYjcxMDBmM2IwZjczY2FkYmIxMzlmNQ==
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 87c37bbf5f013368ee9e2f268f85dc182cb68435
|
|
4
|
+
data.tar.gz: 657d8395b21d2cb777550f41438ca38a078ac770
|
|
7
5
|
SHA512:
|
|
8
|
-
metadata.gz:
|
|
9
|
-
|
|
10
|
-
YTkxZWI5YzY3ZWUxYWQ2MWU1MDUwYmQwMDJlYWRlMDBhZTIwMjNlY2FhNmZj
|
|
11
|
-
MjU1NDBmMjM4YzYxYjBjN2E3ZTUxMzA2MTAxMThhYTNkNGE5NzM=
|
|
12
|
-
data.tar.gz: !binary |-
|
|
13
|
-
MmYxMjUxNTU1MWY3MjIwZTU2MmYyNmY4Yjc5NGIzYTdkZmYwMTdjYzk0NTYy
|
|
14
|
-
M2VjNmM1ODUzYWNhNzllMTlhYjg4MTk1ZTkxOWYzNzc1MWIyYmNlODJmNmM5
|
|
15
|
-
ZGJkMTAyOWQ5YzM3MjczYmI3ZjdmMzdjYTdiOWU1ZjI3ZmFiMjI=
|
|
6
|
+
metadata.gz: fc7a417c01ee8c2fdfc81528ad1feb5f1c052e6abc4d40a7971b256c2ba80086ca6c0c1bbbfcea92127bfbaca66126722b42d06d98c8de1c3b34fb99a256be55
|
|
7
|
+
data.tar.gz: f19f1fc574fba5181762508fad79644fcbb214412e9db151a5fa63edae5274c1441efa557b549c39ca63d01d3c924db91723f15003a1e32b576072a7a9af2f5e
|
data/README.md
CHANGED
|
@@ -1,10 +1,14 @@
|
|
|
1
|
-
# Vagrant Rsync Plugin
|
|
1
|
+
# DEPRECATED! Vagrant Rsync Plugin
|
|
2
2
|
This is a [Vagrant](http://www.vagrantup.com) 1.1+ plugin that adds an rsync command to vagrant, allowing you to use a filesystem watcher to sync your shared directories with your guest machines.
|
|
3
3
|
|
|
4
|
+
**DEPRECATED**
|
|
5
|
+
Due to the release of vagrant 1.5, with it's build in rsync shared folders, this plugin is no longer needed.
|
|
6
|
+
|
|
4
7
|
**NOTE:** This plugin requires Vagrant 1.1+, and [rsync](http://rsync.samba.org/)
|
|
5
8
|
|
|
6
9
|
Based off of [Vagrant-Sync](https://github.com/calavera/vagrant-sync)
|
|
7
10
|
|
|
11
|
+
|
|
8
12
|
## Features
|
|
9
13
|
* automatically detects all shared folders, on all named machines
|
|
10
14
|
* syncs em up.
|
|
@@ -9,7 +9,7 @@ module VagrantPlugins
|
|
|
9
9
|
options[:verbose] = false
|
|
10
10
|
|
|
11
11
|
opts = OptionParser.new do |o|
|
|
12
|
-
o.banner = "Usage: vagrant rsync [vm-name]"
|
|
12
|
+
o.banner = "DEPRECATED!! Usage: vagrant rsync [vm-name]"
|
|
13
13
|
|
|
14
14
|
o.on("-n", "--no-install", "Do not attempt to install rysnc if not found") do |ni|
|
|
15
15
|
options[:install_rsync] = !ni
|
data/lib/vagrant-rsync/plugin.rb
CHANGED
|
@@ -18,10 +18,12 @@ module VagrantPlugins
|
|
|
18
18
|
class Plugin < Vagrant.plugin("2")
|
|
19
19
|
name "rsync command"
|
|
20
20
|
description <<-DESC
|
|
21
|
+
THIS PLUGIN IS DEPRECATED: use a recent vagrant 1.5+ for rsync-ed folders.
|
|
21
22
|
The `rsync` command allows you to sync the files in your working directories to the guest.
|
|
22
23
|
DESC
|
|
23
24
|
|
|
24
25
|
command("rsync") do
|
|
26
|
+
|
|
25
27
|
require_relative 'command'
|
|
26
28
|
Command
|
|
27
29
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: vagrant-rsync
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Bill Cromie
|
|
@@ -9,20 +9,20 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2014-
|
|
12
|
+
date: 2014-07-01 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: rake
|
|
16
16
|
requirement: !ruby/object:Gem::Requirement
|
|
17
17
|
requirements:
|
|
18
|
-
- -
|
|
18
|
+
- - ">="
|
|
19
19
|
- !ruby/object:Gem::Version
|
|
20
20
|
version: '0'
|
|
21
21
|
type: :development
|
|
22
22
|
prerelease: false
|
|
23
23
|
version_requirements: !ruby/object:Gem::Requirement
|
|
24
24
|
requirements:
|
|
25
|
-
- -
|
|
25
|
+
- - ">="
|
|
26
26
|
- !ruby/object:Gem::Version
|
|
27
27
|
version: '0'
|
|
28
28
|
description: Enables Vagrant to rsync shared folders on remote guests with grace and
|
|
@@ -34,22 +34,22 @@ executables: []
|
|
|
34
34
|
extensions: []
|
|
35
35
|
extra_rdoc_files: []
|
|
36
36
|
files:
|
|
37
|
+
- ".gitignore"
|
|
37
38
|
- Gemfile
|
|
38
39
|
- Guardfile
|
|
40
|
+
- License
|
|
41
|
+
- README.md
|
|
42
|
+
- RakeFile
|
|
43
|
+
- Vagrantfile.testing
|
|
44
|
+
- lib/vagrant-rsync.rb
|
|
39
45
|
- lib/vagrant-rsync/cap/ensure_rsync.rb
|
|
40
46
|
- lib/vagrant-rsync/cap/rsync_folders.rb
|
|
41
47
|
- lib/vagrant-rsync/command.rb
|
|
42
48
|
- lib/vagrant-rsync/errors.rb
|
|
43
49
|
- lib/vagrant-rsync/plugin.rb
|
|
44
50
|
- lib/vagrant-rsync/version.rb
|
|
45
|
-
- lib/vagrant-rsync.rb
|
|
46
|
-
- License
|
|
47
51
|
- locales/en.yml
|
|
48
|
-
- RakeFile
|
|
49
|
-
- README.md
|
|
50
52
|
- vagrant-rsync.gemspec
|
|
51
|
-
- Vagrantfile.testing
|
|
52
|
-
- .gitignore
|
|
53
53
|
homepage: https://github.com/cromulus/vagrant-rsync
|
|
54
54
|
licenses: []
|
|
55
55
|
metadata: {}
|
|
@@ -59,17 +59,17 @@ require_paths:
|
|
|
59
59
|
- lib
|
|
60
60
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
61
61
|
requirements:
|
|
62
|
-
- -
|
|
62
|
+
- - ">="
|
|
63
63
|
- !ruby/object:Gem::Version
|
|
64
64
|
version: '0'
|
|
65
65
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
66
66
|
requirements:
|
|
67
|
-
- -
|
|
67
|
+
- - ">="
|
|
68
68
|
- !ruby/object:Gem::Version
|
|
69
69
|
version: 1.3.6
|
|
70
70
|
requirements: []
|
|
71
71
|
rubyforge_project: vagrant-rsync
|
|
72
|
-
rubygems_version: 2.
|
|
72
|
+
rubygems_version: 2.2.2
|
|
73
73
|
signing_key:
|
|
74
74
|
specification_version: 4
|
|
75
75
|
summary: Enables Vagrant to rsync shared folders on remote guests with grace and aplomb.
|