capistrano-distribution 0.4.1 → 0.4.2
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/NEWS.md +4 -0
- data/lib/capistrano/distribution.rb +7 -1
- data/lib/capistrano/distribution/version.rb +1 -1
- metadata +11 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: eed0e0cfd7d0833fc23e781ffd739e18507d24e6
|
|
4
|
+
data.tar.gz: 7afe2fd9d801a42ef20ed7a66b672d9c9e1e152c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d5f8f381285afc2eca8a0f36d091361c9b3206973c51248f9b1b76369718c58fdfe2267a701c445fd52a4f751c9e535fb7ecb5ad2729d2e8d36491af454d89d8
|
|
7
|
+
data.tar.gz: ad7c4e77c9519b1265c9da25b06002e90358122d31267eb991e498188f8d69b4892faaca06736f25821445ac21a38eb9538173c9a0b0dae0427983a5658f2da9
|
data/NEWS.md
CHANGED
|
@@ -6,6 +6,10 @@ detailed information is available in the rest of the documentation.
|
|
|
6
6
|
**NOTE:** Date stamps in the following entries are in YYYY/MM/DD format.
|
|
7
7
|
|
|
8
8
|
|
|
9
|
+
## v0.4.2 (2016/05/12)
|
|
10
|
+
|
|
11
|
+
* Add support for Capistrano 3.5.0.
|
|
12
|
+
|
|
9
13
|
## v0.4.1 (2016/03/15)
|
|
10
14
|
|
|
11
15
|
* Do not try to work within the repo directory since it may not exist.
|
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
require 'capistrano/distribution/distributor'
|
|
2
|
-
|
|
2
|
+
|
|
3
|
+
# Avoid loading tasks definitions more than once.
|
|
4
|
+
# Fixes support for capistrano 3.5.0.
|
|
5
|
+
unless defined?(DISTRIBUTION_TASKS_LOADED) && DISTRIBUTION_TASKS_LOADED
|
|
6
|
+
load File.expand_path('../tasks/distribution.cap', __FILE__)
|
|
7
|
+
DISTRIBUTION_TASKS_LOADED = true
|
|
8
|
+
end
|
|
3
9
|
|
|
4
10
|
module Capistrano
|
|
5
11
|
|
metadata
CHANGED
|
@@ -1,29 +1,35 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: capistrano-distribution
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jeremy Bopp
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-
|
|
11
|
+
date: 2016-05-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: capistrano
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
|
-
- - "
|
|
17
|
+
- - ">"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
19
|
version: 3.4.0
|
|
20
|
+
- - "<"
|
|
21
|
+
- !ruby/object:Gem::Version
|
|
22
|
+
version: 3.6.0
|
|
20
23
|
type: :runtime
|
|
21
24
|
prerelease: false
|
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
26
|
requirements:
|
|
24
|
-
- - "
|
|
27
|
+
- - ">"
|
|
25
28
|
- !ruby/object:Gem::Version
|
|
26
29
|
version: 3.4.0
|
|
30
|
+
- - "<"
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: 3.6.0
|
|
27
33
|
- !ruby/object:Gem::Dependency
|
|
28
34
|
name: rake
|
|
29
35
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -145,7 +151,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
145
151
|
version: '0'
|
|
146
152
|
requirements: []
|
|
147
153
|
rubyforge_project:
|
|
148
|
-
rubygems_version: 2.
|
|
154
|
+
rubygems_version: 2.5.1
|
|
149
155
|
signing_key:
|
|
150
156
|
specification_version: 4
|
|
151
157
|
summary: Flexible distribution for Capistrano 3.x.
|