capistrano-net_storage 0.3.1 → 0.3.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 19ebcc34c38db947f673187c11e11eee4851f41d
4
- data.tar.gz: e10efbaca64771685092abc467c8a978f779288e
3
+ metadata.gz: 507fe8707e3df873b757a6a44e830852f67d4444
4
+ data.tar.gz: 15d1fa62fb07eabb8c40fbe22cb5007f9bef445f
5
5
  SHA512:
6
- metadata.gz: 19bd1b5051ba897e75014dce2e715ea12d7b959524b44ade6b31dee8ce7497e8601408d53ac60a7841c2f752b1718369b9d68d855b6425e9320df8d78f4e30b1
7
- data.tar.gz: 6414f21a258819cfa9b424de33a2357bc2a9a6f6abde1bb4b26b9d6ee248b962b802d4e870968f7b45daaa7d400941a8075fdc8e3966a98a872cdbb2e85febf0
6
+ metadata.gz: 06d7db8a593c0badde8a5f16f833a3f42f4ab1add488fcb88b1f6bb51f48d8d65a4feac9c14b833c6393de6d0d13225d54752d33afe244e0fb6c3c6033a5ac36
7
+ data.tar.gz: d17853a6e94973c78e41f1ac807e635da7ca33d50bd131559a443e75ef6fabc0cd82d14e8344f67bdecaeab5f50196f448a969ccb37a3b5389495926bd010e28
@@ -1,3 +1,9 @@
1
+ ## 0.3.2 (2017/11/7)
2
+
3
+ Fix Bug:
4
+
5
+ - Use Capistrano::Configuration.env.filter (#8) @SpringMT
6
+
1
7
  ## 0.3.1 (2017/11/6)
2
8
 
3
9
  Fix Bug:
@@ -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
- on c.servers, in: :groups, limit: c.max_parallels do |host|
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|
@@ -1,5 +1,5 @@
1
1
  module Capistrano
2
2
  module NetStorage
3
- VERSION = '0.3.1'
3
+ VERSION = '0.3.2'
4
4
  end
5
5
  end
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.1
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-06 00:00:00.000000000 Z
11
+ date: 2017-11-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: capistrano