oz_capistrano_rsync_with_remote_cache 2.5.0 → 2.5.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -20,7 +20,7 @@ This gem is tested on Mac OS X and Linux. Windows is neither tested nor supporte
20
20
 
21
21
  == Installation
22
22
 
23
- gem install capistrano_rsync_with_remote_cache
23
+ gem install oz_capistrano_rsync_with_remote_cache
24
24
 
25
25
  == Usage
26
26
 
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 = 'oz_capistrano_rsync_with_remote_cache'
7
- s.version = '2.5.0'
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. Forked from capistrano_rsync_with_remote_cache and fixed couple of errors"
12
- s.authors = ['Patrick Reagan', 'Mark Cornick', 'Levent Yalcin']
13
- s.email = 'leventyalcin@gmail.com'
14
- s.homepage = 'https://github.com/leventyalcin/capistrano_rsync_with_remote_cache'
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
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 2
7
7
  - 5
8
- - 0
9
- version: 2.5.0
8
+ - 1
9
+ version: 2.5.1
10
10
  platform: ruby
11
11
  authors:
12
12
  - Patrick Reagan