capistrano-ext 1.2.0 → 1.2.1
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.
- data/CHANGELOG.rdoc +31 -0
- data/MIT-LICENSE +20 -0
- data/Manifest +9 -0
- data/README +3 -0
- data/capistrano-ext.gemspec +56 -0
- data/lib/capistrano/ext/multistage.rb +11 -5
- data/lib/capistrano/ext/version.rb +1 -1
- data/setup.rb +1346 -0
- metadata +64 -44
metadata
CHANGED
@@ -1,60 +1,80 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
|
-
rubygems_version: 0.9.4
|
3
|
-
specification_version: 1
|
4
2
|
name: capistrano-ext
|
5
3
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 1.2.
|
7
|
-
date: 2007-07-06 00:00:00 -06:00
|
8
|
-
summary: Capistrano Extensions is a set of useful task libraries and methods that other developers may reference in their own recipe files.
|
9
|
-
require_paths:
|
10
|
-
- lib
|
11
|
-
email: jamis@37signals.com
|
12
|
-
homepage: http://www.capify.com
|
13
|
-
rubyforge_project:
|
14
|
-
description:
|
15
|
-
autorequire:
|
16
|
-
default_executable:
|
17
|
-
bindir: bin
|
18
|
-
has_rdoc: false
|
19
|
-
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
20
|
-
requirements:
|
21
|
-
- - ">"
|
22
|
-
- !ruby/object:Gem::Version
|
23
|
-
version: 0.0.0
|
24
|
-
version:
|
4
|
+
version: 1.2.1
|
25
5
|
platform: ruby
|
26
|
-
signing_key:
|
27
|
-
cert_chain:
|
28
|
-
post_install_message:
|
29
6
|
authors:
|
30
7
|
- Jamis Buck
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
- lib/capistrano/ext/assets
|
35
|
-
- lib/capistrano/ext/assets/request-counter.rb
|
36
|
-
- lib/capistrano/ext/monitor.rb
|
37
|
-
- lib/capistrano/ext/multistage.rb
|
38
|
-
- lib/capistrano/ext/version.rb
|
39
|
-
test_files: []
|
40
|
-
|
41
|
-
rdoc_options: []
|
42
|
-
|
43
|
-
extra_rdoc_files: []
|
44
|
-
|
45
|
-
executables: []
|
46
|
-
|
47
|
-
extensions: []
|
48
|
-
|
49
|
-
requirements: []
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
50
11
|
|
12
|
+
date: 2008-06-14 00:00:00 -06:00
|
13
|
+
default_executable:
|
51
14
|
dependencies:
|
52
15
|
- !ruby/object:Gem::Dependency
|
53
16
|
name: capistrano
|
54
17
|
version_requirement:
|
55
|
-
version_requirements: !ruby/object:Gem::
|
18
|
+
version_requirements: !ruby/object:Gem::Requirement
|
56
19
|
requirements:
|
57
20
|
- - ">="
|
58
21
|
- !ruby/object:Gem::Version
|
59
22
|
version: 1.0.0
|
60
23
|
version:
|
24
|
+
description: Useful task libraries and methods for Capistrano
|
25
|
+
email: jamis@jamisbuck.org
|
26
|
+
executables: []
|
27
|
+
|
28
|
+
extensions: []
|
29
|
+
|
30
|
+
extra_rdoc_files:
|
31
|
+
- CHANGELOG.rdoc
|
32
|
+
- lib/capistrano/ext/assets/request-counter.rb
|
33
|
+
- lib/capistrano/ext/monitor.rb
|
34
|
+
- lib/capistrano/ext/multistage.rb
|
35
|
+
- lib/capistrano/ext/version.rb
|
36
|
+
- README
|
37
|
+
files:
|
38
|
+
- CHANGELOG.rdoc
|
39
|
+
- lib/capistrano/ext/assets/request-counter.rb
|
40
|
+
- lib/capistrano/ext/monitor.rb
|
41
|
+
- lib/capistrano/ext/multistage.rb
|
42
|
+
- lib/capistrano/ext/version.rb
|
43
|
+
- MIT-LICENSE
|
44
|
+
- README
|
45
|
+
- setup.rb
|
46
|
+
- Manifest
|
47
|
+
- capistrano-ext.gemspec
|
48
|
+
has_rdoc: true
|
49
|
+
homepage: http://www.capify.org
|
50
|
+
post_install_message:
|
51
|
+
rdoc_options:
|
52
|
+
- --line-numbers
|
53
|
+
- --inline-source
|
54
|
+
- --title
|
55
|
+
- Capistrano-ext
|
56
|
+
- --main
|
57
|
+
- README
|
58
|
+
require_paths:
|
59
|
+
- lib
|
60
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
61
|
+
requirements:
|
62
|
+
- - ">="
|
63
|
+
- !ruby/object:Gem::Version
|
64
|
+
version: "0"
|
65
|
+
version:
|
66
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
67
|
+
requirements:
|
68
|
+
- - ">="
|
69
|
+
- !ruby/object:Gem::Version
|
70
|
+
version: "0"
|
71
|
+
version:
|
72
|
+
requirements: []
|
73
|
+
|
74
|
+
rubyforge_project: capistrano-ext
|
75
|
+
rubygems_version: 1.1.1
|
76
|
+
signing_key:
|
77
|
+
specification_version: 2
|
78
|
+
summary: Useful task libraries and methods for Capistrano
|
79
|
+
test_files: []
|
80
|
+
|