vagrant-sudo-rsync 0.1.0 → 0.1.1
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 -5
- data/.github_changelog_generator +1 -1
- data/.gitignore +0 -1
- data/CHANGELOG.md +11 -1
- data/Gemfile +1 -1
- data/Gemfile.lock +40 -0
- data/README.md +37 -11
- data/lib/vagrant_sudo_rsync/identity.rb +1 -1
- data/vagrant-sudo-rsync.gemspec +1 -1
- metadata +5 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: fe96fa1018bcb7c9876a661dd56a0d82faea29de675368d02f7aa7c796ee8f58
|
|
4
|
+
data.tar.gz: 8493274a111a48f544777f6c3f0e46988bee2b85c525af05fbe5215e12689d7c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ebf3a4078d09e57a9046318d7a1950500aeb2fc556b64555e8a0bd671c37a1696274d94e77b7ff0f87a5666530e19cae914a7efd0c2fff997bc6dbb0559ad301
|
|
7
|
+
data.tar.gz: 349ad00dbd5305bfb6ef1951a0fbbc1e63b52b24edac8865fab3b2c481ed75e0ff90f292f6d7793e409f5d7fcd966f6d20587f6ede1ecbc0afec9132822dfd41
|
data/.github_changelog_generator
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
unreleased=true
|
|
2
|
-
future-release=0.1.
|
|
2
|
+
future-release=0.1.1
|
data/.gitignore
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,18 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
## [0.1.
|
|
3
|
+
## [0.1.1](https://github.com/TypistTech/vagrant-sudo-rsync/tree/0.1.1) (2019-03-06)
|
|
4
|
+
[Full Changelog](https://github.com/TypistTech/vagrant-sudo-rsync/compare/v0.1.0...0.1.1)
|
|
5
|
+
|
|
6
|
+
**Merged pull requests:**
|
|
7
|
+
|
|
8
|
+
- Fix `Readme`; `$ bundle update`; Git: Commit `Gemfile.lock` [\#10](https://github.com/TypistTech/vagrant-sudo-rsync/pull/10) ([TangRufus](https://github.com/TangRufus))
|
|
9
|
+
- Require ruby version `~\> 2.3` [\#6](https://github.com/TypistTech/vagrant-sudo-rsync/pull/6) ([TangRufus](https://github.com/TangRufus))
|
|
10
|
+
- Fix incorrect link [\#5](https://github.com/TypistTech/vagrant-sudo-rsync/pull/5) ([TangRufus](https://github.com/TangRufus))
|
|
11
|
+
|
|
12
|
+
## [v0.1.0](https://github.com/TypistTech/vagrant-sudo-rsync/tree/v0.1.0) (2017-09-11)
|
|
4
13
|
**Merged pull requests:**
|
|
5
14
|
|
|
15
|
+
- Version bump 0.1.0 [\#4](https://github.com/TypistTech/vagrant-sudo-rsync/pull/4) ([TangRufus](https://github.com/TangRufus))
|
|
6
16
|
- Add rubocop [\#3](https://github.com/TypistTech/vagrant-sudo-rsync/pull/3) ([TangRufus](https://github.com/TangRufus))
|
|
7
17
|
- Add changelog [\#2](https://github.com/TypistTech/vagrant-sudo-rsync/pull/2) ([TangRufus](https://github.com/TangRufus))
|
|
8
18
|
- First release [\#1](https://github.com/TypistTech/vagrant-sudo-rsync/pull/1) ([TangRufus](https://github.com/TangRufus))
|
data/Gemfile
CHANGED
data/Gemfile.lock
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
PATH
|
|
2
|
+
remote: .
|
|
3
|
+
specs:
|
|
4
|
+
vagrant-sudo-rsync (0.1.0)
|
|
5
|
+
|
|
6
|
+
GEM
|
|
7
|
+
remote: https://rubygems.org/
|
|
8
|
+
specs:
|
|
9
|
+
ast (2.4.0)
|
|
10
|
+
jaro_winkler (1.5.2)
|
|
11
|
+
parallel (1.14.0)
|
|
12
|
+
parser (2.6.0.0)
|
|
13
|
+
ast (~> 2.4.0)
|
|
14
|
+
powerpack (0.1.2)
|
|
15
|
+
psych (3.1.0)
|
|
16
|
+
rainbow (3.0.0)
|
|
17
|
+
rake (12.3.2)
|
|
18
|
+
rubocop (0.65.0)
|
|
19
|
+
jaro_winkler (~> 1.5.1)
|
|
20
|
+
parallel (~> 1.10)
|
|
21
|
+
parser (>= 2.5, != 2.5.1.1)
|
|
22
|
+
powerpack (~> 0.1)
|
|
23
|
+
psych (>= 3.1.0)
|
|
24
|
+
rainbow (>= 2.2.2, < 4.0)
|
|
25
|
+
ruby-progressbar (~> 1.7)
|
|
26
|
+
unicode-display_width (~> 1.4.0)
|
|
27
|
+
ruby-progressbar (1.10.0)
|
|
28
|
+
unicode-display_width (1.4.1)
|
|
29
|
+
|
|
30
|
+
PLATFORMS
|
|
31
|
+
ruby
|
|
32
|
+
|
|
33
|
+
DEPENDENCIES
|
|
34
|
+
bundler (>= 1.15, < 3.0)
|
|
35
|
+
rake (~> 12.1)
|
|
36
|
+
rubocop (~> 0.49)
|
|
37
|
+
vagrant-sudo-rsync!
|
|
38
|
+
|
|
39
|
+
BUNDLED WITH
|
|
40
|
+
2.0.1
|
data/README.md
CHANGED
|
@@ -2,9 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://rubygems.org/gems/vagrant-sudo-rsync)
|
|
4
4
|
[](https://rubygems.org/gems/vagrant-sudo-rsync)
|
|
5
|
-
[](https://gemnasium.com/github.com/TypistTech/vagrant-sudo-rsync)
|
|
6
5
|
[](https://github.com/TypistTech/vagrant-sudo-rsync/blob/master/LICENSE)
|
|
7
|
-
[](https://www.typist.tech/donate/
|
|
6
|
+
[](https://www.typist.tech/donate/vagrant-sudo-rsync/)
|
|
8
7
|
[](https://www.typist.tech/contact/)
|
|
9
8
|
|
|
10
9
|
Copy files from/to a Vagrant VM with sudo and necessary SSH config
|
|
@@ -15,13 +14,16 @@ Copy files from/to a Vagrant VM with sudo and necessary SSH config
|
|
|
15
14
|
|
|
16
15
|
- [Installation](#installation)
|
|
17
16
|
- [Usage](#usage)
|
|
17
|
+
- [It looks awesome. Where can I find some more goodies like this?](#it-looks-awesome-where-can-i-find-some-more-goodies-like-this)
|
|
18
|
+
- [I love this project. Where can I give a :star::star::star::star::star: review?](#i-love-this-project-where-can-i-give-a-starstarstarstarstar-review)
|
|
18
19
|
- [Support!](#support)
|
|
19
|
-
- [Donate
|
|
20
|
+
- [Donate](#donate)
|
|
20
21
|
- [Why don't you hire me?](#why-dont-you-hire-me)
|
|
21
22
|
- [Want to help in other way? Want to be a sponsor?](#want-to-help-in-other-way-want-to-be-a-sponsor)
|
|
22
23
|
- [Feedback](#feedback)
|
|
23
|
-
- [Change
|
|
24
|
-
- [
|
|
24
|
+
- [Change Log](#change-log)
|
|
25
|
+
- [Security](#security)
|
|
26
|
+
- [Credits](#credits)
|
|
25
27
|
- [Contributing](#contributing)
|
|
26
28
|
- [License](#license)
|
|
27
29
|
|
|
@@ -73,15 +75,35 @@ total size is 3,186 speedup is 0.90
|
|
|
73
75
|
- Anything after `$ vagrant sudo-rsync` is passed to `$ rsync`
|
|
74
76
|
- Never specific `--rsh`, `-e` or `--rsync-path`
|
|
75
77
|
|
|
78
|
+
### It looks awesome. Where can I find some more goodies like this?
|
|
79
|
+
|
|
80
|
+
* Articles on Typist Tech's [blog](https://typist.tech)
|
|
81
|
+
* [Tang Rufus' WordPress plugins](https://profiles.wordpress.org/tangrufus#content-plugins) on wp.org
|
|
82
|
+
* More projects on [Typist Tech's GitHub profile](https://github.com/TypistTech)
|
|
83
|
+
* Stay tuned on [Typist Tech's newsletter](https://typist.tech/go/newsletter)
|
|
84
|
+
* Follow [Tang Rufus' Twitter account](https://twitter.com/TangRufus)
|
|
85
|
+
|
|
86
|
+
### I love this project. Where can I give a :star::star::star::star::star: review?
|
|
87
|
+
|
|
88
|
+
Thanks! Glad you like it. It's important to let mw know this project is useful to somebody. Please consider:
|
|
89
|
+
|
|
90
|
+
- tweet something good with mentioning [@TypistTech](https://twitter.com/typisttech) and [@TangRufus](https://twitter.com/tangrufus)
|
|
91
|
+
- :star: this [Github repo](https://github.com/ItinerisLtd/vagrant-sudo-rsync)
|
|
92
|
+
- watch this [Github repo](https://github.com/ItinerisLtd/vagrant-sudo-rsync)
|
|
93
|
+
- write blog posts
|
|
94
|
+
- submit pull requests
|
|
95
|
+
- [donate](https://typist.tech/donate/)
|
|
96
|
+
- [hire me](https://typist.tech/contact/)
|
|
97
|
+
|
|
76
98
|
## Support!
|
|
77
99
|
|
|
78
|
-
### Donate
|
|
100
|
+
### Donate
|
|
79
101
|
|
|
80
|
-
Love Vagrant Sudo Rsync? Help me maintain it, a [donation here](https://
|
|
102
|
+
Love Vagrant Sudo Rsync? Help me maintain it, a [donation here](https://typist.tech/donation/) can help with it.
|
|
81
103
|
|
|
82
104
|
### Why don't you hire me?
|
|
83
105
|
|
|
84
|
-
Ready to take freelance WordPress jobs. Contact me via the contact form [here](https://
|
|
106
|
+
Ready to take freelance WordPress jobs. Contact me via the contact form [here](https://typist.tech/contact/) or, via email [info@typist.tech](mailto:info@typist.tech)
|
|
85
107
|
|
|
86
108
|
### Want to help in other way? Want to be a sponsor?
|
|
87
109
|
|
|
@@ -93,13 +115,17 @@ Contact: [Tang Rufus](mailto:tangrufus@gmail.com)
|
|
|
93
115
|
Please submit an [issue](https://github.com/TypistTech/vagrant-sudo-rsync/issues/new) and point out what you do and don't like, or fork the project and make suggestions.
|
|
94
116
|
**No issue is too small.**
|
|
95
117
|
|
|
96
|
-
## Change
|
|
118
|
+
## Change Log
|
|
97
119
|
|
|
98
120
|
Please see [CHANGELOG](./CHANGELOG.md) for more information on what has changed recently.
|
|
99
121
|
|
|
100
|
-
##
|
|
122
|
+
## Security
|
|
123
|
+
|
|
124
|
+
If you discover any security related issues, please email [vagrant-sudo-rsync@typist.tech](mailto:vagrant-sudo-rsync@typist.tech) instead of using the issue tracker.
|
|
125
|
+
|
|
126
|
+
## Credits
|
|
101
127
|
|
|
102
|
-
[Vagrant Sudo Rsync](https://github.com/TypistTech/vagrant-sudo-rsync) is a [Typist Tech](https://
|
|
128
|
+
[Vagrant Sudo Rsync](https://github.com/TypistTech/vagrant-sudo-rsync) is a [Typist Tech](https://typist.tech) project and maintained by [Tang Rufus](https://twitter.com/TangRufus), freelance developer for [hire](https://typist.tech/contact/).
|
|
103
129
|
|
|
104
130
|
Full list of contributors can be found [here](https://github.com/TypistTech/vagrant-sudo-rsync/graphs/contributors).
|
|
105
131
|
|
data/vagrant-sudo-rsync.gemspec
CHANGED
|
@@ -23,7 +23,7 @@ Gem::Specification.new do |spec|
|
|
|
23
23
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
24
24
|
spec.require_paths = ["lib"]
|
|
25
25
|
|
|
26
|
-
spec.required_ruby_version = "~> 2.
|
|
26
|
+
spec.required_ruby_version = "~> 2.3"
|
|
27
27
|
spec.required_rubygems_version = ">= 1.3.6"
|
|
28
28
|
|
|
29
29
|
spec.add_development_dependency "bundler", "~> 1.15"
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: vagrant-sudo-rsync
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tang Rufus
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: exe
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date:
|
|
12
|
+
date: 2019-03-06 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: bundler
|
|
@@ -67,6 +67,7 @@ files:
|
|
|
67
67
|
- CHANGELOG.md
|
|
68
68
|
- CODE_OF_CONDUCT.md
|
|
69
69
|
- Gemfile
|
|
70
|
+
- Gemfile.lock
|
|
70
71
|
- LICENSE.txt
|
|
71
72
|
- README.md
|
|
72
73
|
- Rakefile
|
|
@@ -87,18 +88,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
87
88
|
requirements:
|
|
88
89
|
- - "~>"
|
|
89
90
|
- !ruby/object:Gem::Version
|
|
90
|
-
version: '2.
|
|
91
|
-
- - "<"
|
|
92
|
-
- !ruby/object:Gem::Version
|
|
93
|
-
version: '2.4'
|
|
91
|
+
version: '2.3'
|
|
94
92
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
95
93
|
requirements:
|
|
96
94
|
- - ">="
|
|
97
95
|
- !ruby/object:Gem::Version
|
|
98
96
|
version: 1.3.6
|
|
99
97
|
requirements: []
|
|
100
|
-
|
|
101
|
-
rubygems_version: 2.5.2
|
|
98
|
+
rubygems_version: 3.0.3
|
|
102
99
|
signing_key:
|
|
103
100
|
specification_version: 4
|
|
104
101
|
summary: Copy files from/to a Vagrant VM with sudo and necessary SSH config
|