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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6b5fd269820e7ffdf412ec37e1be04ed6607310d
4
- data.tar.gz: 25658a29606b080f8146d791f14b5cc4cd856382
3
+ metadata.gz: eed0e0cfd7d0833fc23e781ffd739e18507d24e6
4
+ data.tar.gz: 7afe2fd9d801a42ef20ed7a66b672d9c9e1e152c
5
5
  SHA512:
6
- metadata.gz: 14d47c18b3b63f71fea95da8b8f61e32a43c4052428271c42eb787446d3ad447dee3db23b82e6806d2194b7fbf394d120f2f427b0b3b31d4434fda2f1839c13f
7
- data.tar.gz: 59d534180cd3b12ec21429329028c0ca55d5e2529f471ad531d376e895758df0884c49cef4be1855b07df2ca52e26bcc47612d5cc5372a280199cd8701738241
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
- load File.expand_path('../tasks/distribution.cap', __FILE__)
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
 
@@ -3,7 +3,7 @@ module Capistrano
3
3
  class Distribution
4
4
  ##
5
5
  # The release version of this gem.
6
- VERSION = '0.4.1'
6
+ VERSION = '0.4.2'
7
7
  end
8
8
 
9
9
  end
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.1
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-03-15 00:00:00.000000000 Z
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.4.6
154
+ rubygems_version: 2.5.1
149
155
  signing_key:
150
156
  specification_version: 4
151
157
  summary: Flexible distribution for Capistrano 3.x.