capistrano-rsync-bladrak 1.2.4 → 1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1c804cd07473905f96c6f1a10a91fc77c07d1a95
4
- data.tar.gz: 5322a7fa163143c7b70162a7d87995769113a498
3
+ metadata.gz: 5c292534b215c3e190ddc2cf0d1679349778a1bb
4
+ data.tar.gz: fca9478f8f74d08aecd1bdf47f8a116ad3829b08
5
5
  SHA512:
6
- metadata.gz: 1f0e8b9c277d41755e4ae55230b748dd8df9465641ce89e2389fb9962798fc491c08a86ede8e42f30e161626a302a6be59159bd09d81291b677fa4565b61109f
7
- data.tar.gz: 9c89fb572224982b5f2cc03c7581c1ba8bd20ecefbd96de67751a209d4c472d88f107254ac0a734ac8fbfeb2c953128bb22a40fd65c4edf02c6b9db23a1e64c8
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
- [![Gem version][gem-badge]](http://badge.fury.io/rb/capistrano-rsync)
4
- [gem-badge]: https://badge.fury.io/rb/capistrano-rsync.png
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
- Using [Mina](http://nadarei.co/mina/) instead of Capistrano? I've built
24
- [Mina::Rsync](https://github.com/moll/mina-rsync) as well.
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
- If you find Capistrano::Rsync needs improving, please don't hesitate to type to
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
- Originally from capistrano-rsync
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")
@@ -1,5 +1,5 @@
1
1
  module Capistrano
2
2
  module Rsync
3
- VERSION = "1.2.4"
3
+ VERSION = "1.2.5"
4
4
  end
5
5
  end
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
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-01 00:00:00.000000000 Z
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! Originally
73
- from capistrano-rsync
72
+ summary: Increase deployment performance through rsync Capistrano v3 ready! This is
73
+ a maintained fork of capistrano-rsync
74
74
  test_files: []