capistrano-rsync-bladrak 1.2.4 → 1.2.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +16 -7
- data/capistrano-rsync-bladrak.gemspec +1 -1
- data/lib/capistrano/rsync/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5c292534b215c3e190ddc2cf0d1679349778a1bb
|
4
|
+
data.tar.gz: fca9478f8f74d08aecd1bdf47f8a116ad3829b08
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cbde298a345a19d5866f21a3caa35c21fd8040e3cf543d8c6823468b95fe055432e0f9f95a9648de51ddf30ca4dd93268ab3625de447aa1152f11b9219870e79
|
7
|
+
data.tar.gz: 0652255fa8aafd1ec57d96b5869f8ad6c0527023255a1b6ecc6a2707ca71e38519d4dbda267390673dca6d0d55b4c209ba8c14c601dcab8c34432a206638b26b
|
data/README.md
CHANGED
@@ -1,7 +1,12 @@
|
|
1
1
|
Capistrano::Rsync for Capistrano v3
|
2
2
|
===================================
|
3
|
-
|
4
|
-
|
3
|
+
|
4
|
+
This repository is a fork of https://github.com/moll/capistrano-rsync which doesn't seem to be maintained anymore.
|
5
|
+
|
6
|
+
It has all the capabilities of the original repo, and some other features. Moreover, I will try to maintain it.
|
7
|
+
|
8
|
+
[![Gem Version](https://badge.fury.io/rb/capistrano-rsync-bladrak.svg)](http://badge.fury.io/rb/capistrano-rsync-bladrak)
|
9
|
+
[gem-badge]: https://badge.fury.io/rb/capistrano-rsync-bladrak.svg
|
5
10
|
|
6
11
|
**Deploy with Rsync** to your server from any local (or remote) repository when
|
7
12
|
using [**Capistrano**](http://www.capistranorb.com/). Saves you from having to
|
@@ -20,8 +25,14 @@ machine before deploying.
|
|
20
25
|
- Currently works only with Git (as does Capistrano v3), so please shout out
|
21
26
|
your interest in other SCMs.
|
22
27
|
|
23
|
-
|
24
|
-
|
28
|
+
Added features
|
29
|
+
--------------
|
30
|
+
|
31
|
+
Compared to moll's version, I added the following features:
|
32
|
+
* setting the ``:rsync_target_dir`` option in order to choose where the code will be stored locally
|
33
|
+
* implemented a ``set_current_revision`` task to be compliant with Capistrano
|
34
|
+
* added an option to sparse checkout the repository before rsyncing it, improving performance for large repositories
|
35
|
+
* added an option to limit the clone depth (defaults to 1) to limit used space while deploying
|
25
36
|
|
26
37
|
|
27
38
|
Using
|
@@ -122,6 +133,4 @@ About
|
|
122
133
|
**[Andri Möll](http://themoll.com)** made this happen.
|
123
134
|
[Monday Calendar](https://mondayapp.com) was the reason I needed this.
|
124
135
|
|
125
|
-
|
126
|
-
me now at [andri@dot.ee](mailto:andri@dot.ee) or [create an issue
|
127
|
-
online](https://github.com/moll/capistrano-rsync/issues).
|
136
|
+
**[Hugo Briand](http://about.me/hbriand)** forked it, maintains it, and adds some features.
|
@@ -7,7 +7,7 @@ Gem::Specification.new do |gem|
|
|
7
7
|
gem.summary = <<-end.strip.gsub(/\s*\n\s*/, " ")
|
8
8
|
Increase deployment performance through rsync
|
9
9
|
Capistrano v3 ready!
|
10
|
-
|
10
|
+
This is a maintained fork of capistrano-rsync
|
11
11
|
end
|
12
12
|
|
13
13
|
gem.description = <<-end.strip.gsub(/\s*?\n(\n?)\s*/, " \\1\\1")
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: capistrano-rsync-bladrak
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.2.
|
4
|
+
version: 1.2.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Hugo Briand, Andri Möll
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-06-
|
11
|
+
date: 2015-06-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: capistrano
|
@@ -69,6 +69,6 @@ rubyforge_project:
|
|
69
69
|
rubygems_version: 2.4.5
|
70
70
|
signing_key:
|
71
71
|
specification_version: 4
|
72
|
-
summary: Increase deployment performance through rsync Capistrano v3 ready!
|
73
|
-
|
72
|
+
summary: Increase deployment performance through rsync Capistrano v3 ready! This is
|
73
|
+
a maintained fork of capistrano-rsync
|
74
74
|
test_files: []
|