capistrano-improved-rsync-with-remote-cache 0.0.9 → 1.0.0

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.
@@ -2,17 +2,17 @@
2
2
 
3
3
  Gem::Specification.new do |gem|
4
4
  gem.name = "capistrano-improved-rsync-with-remote-cache"
5
- gem.version = "0.0.9"
5
+ gem.version = "1.0.0"
6
6
  gem.authors = ["Carlos Buenosvinos"]
7
7
  gem.email = ["hi@carlos.io"]
8
8
  gem.homepage = "https://github.com/carlosbuenosvinos/capistrano-improved-rsync-with-remote-cache"
9
9
  gem.summary = %q{Improved version of rsync-with-remote-cache deployment strategy.}
10
- gem.description = %q{Improved version of rsync-with-remote-cache deployment strategy.}
10
+ gem.description = %q{A deployment strategy for Capistrano 2.0 which combines rsync with a remote cache, allowing fast deployments from SCM servers behind firewalls.}
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.add_dependency('capistrano', '>=2.4.1')
17
+ gem.add_dependency('capistrano', '>=2.4.0')
18
18
  end
@@ -4,7 +4,7 @@ require 'fileutils'
4
4
  module Capistrano
5
5
  module Deploy
6
6
  module Strategy
7
- class RsyncWithRemoteCache < Remote
7
+ class ImprovedRsyncWithRemoteCache < Remote
8
8
 
9
9
  class InvalidCacheError < Exception; end
10
10
 
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano-improved-rsync-with-remote-cache
3
3
  version: !ruby/object:Gem::Version
4
- hash: 13
4
+ hash: 23
5
5
  prerelease:
6
6
  segments:
7
+ - 1
7
8
  - 0
8
9
  - 0
9
- - 9
10
- version: 0.0.9
10
+ version: 1.0.0
11
11
  platform: ruby
12
12
  authors:
13
13
  - Carlos Buenosvinos
@@ -25,15 +25,15 @@ dependencies:
25
25
  requirements:
26
26
  - - ">="
27
27
  - !ruby/object:Gem::Version
28
- hash: 29
28
+ hash: 31
29
29
  segments:
30
30
  - 2
31
31
  - 4
32
- - 1
33
- version: 2.4.1
32
+ - 0
33
+ version: 2.4.0
34
34
  type: :runtime
35
35
  version_requirements: *id001
36
- description: Improved version of rsync-with-remote-cache deployment strategy.
36
+ description: A deployment strategy for Capistrano 2.0 which combines rsync with a remote cache, allowing fast deployments from SCM servers behind firewalls.
37
37
  email:
38
38
  - hi@carlos.io
39
39
  executables: []