capistrano-rsync-remote-cache 1.0.0 → 1.0.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 +4 -4
- data/Gemfile +0 -1
- data/capistrano-rsync-remote-cache.gemspec +7 -5
- data/lib/capistrano/recipes/deploy/strategy/rsync_remote_cache.rb +1 -1
- metadata +23 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8a5e5474d9825146f417216d6264d89b76b4f2a8
|
4
|
+
data.tar.gz: 46da4cdaf30e5bd0154fc12a02f50939003a19cb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6ce573fe0ca4dbbc546c51fb72078f3f46beb047ce70300f894940ec348018a62de0a7199f523163b35a4aa10ffa9d977501cc2d5ee5935f1ae70d300c783e41
|
7
|
+
data.tar.gz: 7d018a409edecbc389d5bab6cc40496d4476c411769ef1bcff6e4c69db94f3eed6b20992590388e13bfffcb663f680fcc517efc8238c7d8dffa7f7dbba2f643b
|
data/Gemfile
CHANGED
@@ -2,18 +2,20 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |gem|
|
4
4
|
gem.name = "capistrano-rsync-remote-cache"
|
5
|
-
gem.version = "1.0.
|
5
|
+
gem.version = "1.0.1"
|
6
6
|
gem.authors = ["Yeongseok"]
|
7
7
|
gem.email = ["iyagi15@gmail.com"]
|
8
|
-
gem.homepage = "https://github.com/iyagi15/capistrano_rsync_remote_cache"
|
9
|
-
gem.summary = %q{Improved version of rsync-with-remote-cache deployment strategy.}
|
10
8
|
gem.description = %q{Improved version of rsync-with-remote-cache deployment strategy.}
|
9
|
+
gem.summary = %q{Improved version of rsync-with-remote-cache deployment strategy.}
|
10
|
+
gem.homepage = "https://github.com/iyagi15/capistrano_rsync_remote_cache"
|
11
11
|
|
12
12
|
gem.files = `git ls-files`.split($/)
|
13
13
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
14
14
|
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
15
15
|
gem.require_paths = ["lib"]
|
16
16
|
|
17
|
-
gem.
|
18
|
-
|
17
|
+
gem.licenses = ["MIT"]
|
18
|
+
|
19
|
+
gem.add_runtime_dependency 'capistrano', '~> 2.4', '>= 2.4.0'
|
20
|
+
gem.add_runtime_dependency 'parallel', '~> 0.0', '>= 0.0.0'
|
19
21
|
end
|
@@ -60,7 +60,7 @@ module Capistrano
|
|
60
60
|
end
|
61
61
|
|
62
62
|
def rsync_command_for(server)
|
63
|
-
"sshpass -p '#{password}'
|
63
|
+
"sshpass -p '#{password}' rsync #{rsync_options} --rsh='ssh -p #{ssh_port(server)} #{rsync_ssh_options}' '#{local_cache_path}/' #{rsync_host(server)}:#{repository_cache_path}/"
|
64
64
|
end
|
65
65
|
|
66
66
|
def mark_local_cache
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: capistrano-rsync-remote-cache
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Yeongseok
|
@@ -14,28 +14,40 @@ dependencies:
|
|
14
14
|
name: capistrano
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- -
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '2.4'
|
20
|
+
- - ">="
|
18
21
|
- !ruby/object:Gem::Version
|
19
22
|
version: 2.4.0
|
20
23
|
type: :runtime
|
21
24
|
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
24
|
-
- -
|
27
|
+
- - "~>"
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '2.4'
|
30
|
+
- - ">="
|
25
31
|
- !ruby/object:Gem::Version
|
26
32
|
version: 2.4.0
|
27
33
|
- !ruby/object:Gem::Dependency
|
28
34
|
name: parallel
|
29
35
|
requirement: !ruby/object:Gem::Requirement
|
30
36
|
requirements:
|
31
|
-
- -
|
37
|
+
- - "~>"
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
version: '0.0'
|
40
|
+
- - ">="
|
32
41
|
- !ruby/object:Gem::Version
|
33
42
|
version: 0.0.0
|
34
43
|
type: :runtime
|
35
44
|
prerelease: false
|
36
45
|
version_requirements: !ruby/object:Gem::Requirement
|
37
46
|
requirements:
|
38
|
-
- -
|
47
|
+
- - "~>"
|
48
|
+
- !ruby/object:Gem::Version
|
49
|
+
version: '0.0'
|
50
|
+
- - ">="
|
39
51
|
- !ruby/object:Gem::Version
|
40
52
|
version: 0.0.0
|
41
53
|
description: Improved version of rsync-with-remote-cache deployment strategy.
|
@@ -45,14 +57,15 @@ executables: []
|
|
45
57
|
extensions: []
|
46
58
|
extra_rdoc_files: []
|
47
59
|
files:
|
48
|
-
- .gitignore
|
60
|
+
- ".gitignore"
|
49
61
|
- Gemfile
|
50
62
|
- README.rdoc
|
51
63
|
- Rakefile
|
52
64
|
- capistrano-rsync-remote-cache.gemspec
|
53
65
|
- lib/capistrano/recipes/deploy/strategy/rsync_remote_cache.rb
|
54
66
|
homepage: https://github.com/iyagi15/capistrano_rsync_remote_cache
|
55
|
-
licenses:
|
67
|
+
licenses:
|
68
|
+
- MIT
|
56
69
|
metadata: {}
|
57
70
|
post_install_message:
|
58
71
|
rdoc_options: []
|
@@ -60,17 +73,17 @@ require_paths:
|
|
60
73
|
- lib
|
61
74
|
required_ruby_version: !ruby/object:Gem::Requirement
|
62
75
|
requirements:
|
63
|
-
- -
|
76
|
+
- - ">="
|
64
77
|
- !ruby/object:Gem::Version
|
65
78
|
version: '0'
|
66
79
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
67
80
|
requirements:
|
68
|
-
- -
|
81
|
+
- - ">="
|
69
82
|
- !ruby/object:Gem::Version
|
70
83
|
version: '0'
|
71
84
|
requirements: []
|
72
85
|
rubyforge_project:
|
73
|
-
rubygems_version: 2.
|
86
|
+
rubygems_version: 2.4.8
|
74
87
|
signing_key:
|
75
88
|
specification_version: 4
|
76
89
|
summary: Improved version of rsync-with-remote-cache deployment strategy.
|