capistrano-net_storage 0.3.1 → 0.3.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 +4 -4
- data/CHANGELOG.md +6 -0
- data/lib/capistrano/net_storage/utils.rb +2 -1
- data/lib/capistrano/net_storage/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 507fe8707e3df873b757a6a44e830852f67d4444
|
|
4
|
+
data.tar.gz: 15d1fa62fb07eabb8c40fbe22cb5007f9bef445f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 06d7db8a593c0badde8a5f16f833a3f42f4ab1add488fcb88b1f6bb51f48d8d65a4feac9c14b833c6393de6d0d13225d54752d33afe244e0fb6c3c6033a5ac36
|
|
7
|
+
data.tar.gz: d17853a6e94973c78e41f1ac807e635da7ca33d50bd131559a443e75ef6fabc0cd82d14e8344f67bdecaeab5f50196f448a969ccb37a3b5389495926bd010e28
|
data/CHANGELOG.md
CHANGED
|
@@ -16,8 +16,9 @@ module Capistrano
|
|
|
16
16
|
# @param dest_dir [String, Pathname] Destination directory on remote to copy local files into
|
|
17
17
|
def upload_files(files, dest_dir)
|
|
18
18
|
c = config
|
|
19
|
+
hosts = ::Capistrano::Configuration.env.filter(c.servers)
|
|
19
20
|
if c.upload_files_by_rsync?
|
|
20
|
-
|
|
21
|
+
Parallel.each(hosts, in_threads: c.max_parallels) do |host|
|
|
21
22
|
ssh = build_ssh_command(host)
|
|
22
23
|
run_locally do
|
|
23
24
|
files.each do |src|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: capistrano-net_storage
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- progrhyme
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-11-
|
|
11
|
+
date: 2017-11-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: capistrano
|