alcapon 0.4.21 → 0.4.22
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/README.md +6 -1
- metadata +22 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 952a5eea6d1bf971160b89d155ea8d39af7fb37d
|
|
4
|
+
data.tar.gz: 4ef37ee1a625b065cb7af5f6460ffb3055d7b069
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0a75544fcf8c7aff9e7e6b892178658a18851a9200a2e444adc152d9185dd325dfa41bef72cee73268338a1f651d9ce9048e17319b4fa73f09dce97f9f5323a8
|
|
7
|
+
data.tar.gz: 6ba0dd26e115f91fb9d4962d0a3830d39116d5a78c00dd425312273c69961401c14c239759bde417bdc511c4154ff2293690739f6217729d7fc812d4be1e86fd
|
data/README.md
CHANGED
|
@@ -11,12 +11,17 @@ it on a preproduction environment before going further. Please also do read the
|
|
|
11
11
|
CAPISTRANO dependency : we recommand not to use Capistrano >= 2.15 which for some
|
|
12
12
|
reason broke something (see https://github.com/alafon/alcapon/issues/7 and https://github.com/alafon/capistrano/commit/e4f207b4b44e9fa5fa18ec4e85a7469d94570095)
|
|
13
13
|
|
|
14
|
-
AlCapON is not fully compatible with Capistrano 3.x, we are working on it and we recommand to stay on the 2.x branch
|
|
14
|
+
AlCapON is not fully compatible with Capistrano 3.x, we are working on it and we recommand to stay on the 2.x branch.
|
|
15
|
+
|
|
16
|
+
In addition, Capistrano 2.x and Capistrano 3.x can be installed on the same machine so if you update Capistrano to 3.x (because you need for other projects), simply create a simlink in any of your local PATH, to your 2.x bin executable. Exemple on a Mac setup :
|
|
17
|
+
|
|
18
|
+
`/usr/local/bin/cap2 => /Library/Ruby/Gems/2.0.0/gems/capistrano-2.14.2/bin/cap`
|
|
15
19
|
|
|
16
20
|
## Changelog
|
|
17
21
|
|
|
18
22
|
### 0.4.x
|
|
19
23
|
|
|
24
|
+
- pin net-ssh to 2.9.2 (net-ssh 3.x requires Ruby 2.x and we don't want that restriction)
|
|
20
25
|
- removed in 0.4.15 : the 'ezpublish:var:link' task does not call `chown`
|
|
21
26
|
anymore since we must not alter the permissions in shared ressources. They
|
|
22
27
|
must be controlled by ezpublish ONLY
|
metadata
CHANGED
|
@@ -1,43 +1,57 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: alcapon
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.22
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Arnaud Lafon
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2015-11-19 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: 2.14.0
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
|
-
- - ~>
|
|
24
|
+
- - "~>"
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
26
|
version: 2.14.0
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: colored
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
30
30
|
requirements:
|
|
31
|
-
- -
|
|
31
|
+
- - ">="
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
33
|
version: '1.2'
|
|
34
34
|
type: :runtime
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
|
-
- -
|
|
38
|
+
- - ">="
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
40
|
version: '1.2'
|
|
41
|
+
- !ruby/object:Gem::Dependency
|
|
42
|
+
name: net-ssh
|
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
|
44
|
+
requirements:
|
|
45
|
+
- - "~>"
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: 2.9.2
|
|
48
|
+
type: :runtime
|
|
49
|
+
prerelease: false
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - "~>"
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: 2.9.2
|
|
41
55
|
description: Capistrano is a utility and framework for executing commands in parallel
|
|
42
56
|
on multiple remote machines, via SSH. This package gives you some tools to deploy
|
|
43
57
|
your eZ Publish projects.
|
|
@@ -69,12 +83,12 @@ require_paths:
|
|
|
69
83
|
- lib
|
|
70
84
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
71
85
|
requirements:
|
|
72
|
-
- -
|
|
86
|
+
- - ">="
|
|
73
87
|
- !ruby/object:Gem::Version
|
|
74
88
|
version: '0'
|
|
75
89
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
76
90
|
requirements:
|
|
77
|
-
- -
|
|
91
|
+
- - ">="
|
|
78
92
|
- !ruby/object:Gem::Version
|
|
79
93
|
version: '0'
|
|
80
94
|
requirements: []
|