oz_capistrano_rsync_with_remote_cache 2.5.0 → 2.5.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.
- data/README.rdoc +1 -1
- data/Rakefile +7 -7
- data/lib/capistrano/recipes/deploy/strategy/rsync_with_remote_cache.rb +1 -1
- metadata +2 -2
data/README.rdoc
CHANGED
data/Rakefile
CHANGED
@@ -3,15 +3,15 @@ require 'rake/gempackagetask'
|
|
3
3
|
require 'rake/testtask'
|
4
4
|
|
5
5
|
spec = Gem::Specification.new do |s|
|
6
|
-
s.name = '
|
7
|
-
s.version = '2.
|
6
|
+
s.name = 'capistrano_rsync_with_remote_cache'
|
7
|
+
s.version = '2.4.0'
|
8
8
|
s.has_rdoc = true
|
9
9
|
s.extra_rdoc_files = %w(README.rdoc)
|
10
10
|
s.rdoc_options = %w(--main README.rdoc)
|
11
|
-
s.summary = "A deployment strategy for Capistrano 2.0 which combines rsync with a remote cache, allowing fast deployments from SCM servers behind firewalls.
|
12
|
-
s.authors = ['Patrick Reagan', 'Mark Cornick'
|
13
|
-
s.email = '
|
14
|
-
s.homepage = '
|
11
|
+
s.summary = "A deployment strategy for Capistrano 2.0 which combines rsync with a remote cache, allowing fast deployments from SCM servers behind firewalls."
|
12
|
+
s.authors = ['Patrick Reagan', 'Mark Cornick']
|
13
|
+
s.email = 'patrick.reagan@viget.com'
|
14
|
+
s.homepage = 'http://www.viget.com/extend/'
|
15
15
|
s.files = %w(README.rdoc Rakefile) + Dir.glob("{lib,test}/**/*")
|
16
16
|
|
17
17
|
s.add_dependency('capistrano', '>=2.1.0')
|
@@ -27,4 +27,4 @@ Rake::TestTask.new do |t|
|
|
27
27
|
t.verbose = true
|
28
28
|
end
|
29
29
|
|
30
|
-
task :default => :test
|
30
|
+
task :default => :test
|
@@ -44,7 +44,7 @@ module Capistrano
|
|
44
44
|
end
|
45
45
|
|
46
46
|
def rsync_command_for(server)
|
47
|
-
"rsync #{rsync_options} --rsh='ssh -p #{ssh_port(server)} #{ssh_key} #{ssh_config_file}' #{local_cache_path}/ #{rsync_host(server)}:#{repository_cache_path}/"
|
47
|
+
"rsync #{rsync_options} --rsh='ssh -p #{ssh_port(server)} #{ssh_key} #{ssh_config_file}' '#{local_cache_path}/' #{rsync_host(server)}:#{repository_cache_path}/"
|
48
48
|
end
|
49
49
|
|
50
50
|
def mark_local_cache
|