capistrano-cm 0.0.2 → 0.0.3
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/capistrano-cm.gemspec +10 -11
- metadata +26 -10
data/capistrano-cm.gemspec
CHANGED
|
@@ -1,16 +1,14 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
|
-
s.name =
|
|
3
|
-
s.version = "0.0.
|
|
2
|
+
s.name = "capistrano-cm"
|
|
3
|
+
s.version = "0.0.3"
|
|
4
4
|
|
|
5
5
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
6
|
-
s.
|
|
7
|
-
s.date =
|
|
8
|
-
s.description =
|
|
9
|
-
s.email =
|
|
6
|
+
s.author = "Justin S. Leitgeb"
|
|
7
|
+
s.date = "2009-11-04"
|
|
8
|
+
s.description = "Lightweight cap extensions to assist in server configuration management"
|
|
9
|
+
s.email = "justin@stackbuilders.com"
|
|
10
10
|
|
|
11
|
-
s.extra_rdoc_files = [
|
|
12
|
-
"README.rdoc"
|
|
13
|
-
]
|
|
11
|
+
s.extra_rdoc_files = ["README.rdoc"]
|
|
14
12
|
|
|
15
13
|
s.files = [
|
|
16
14
|
".gitignore",
|
|
@@ -19,9 +17,10 @@ Gem::Specification.new do |s|
|
|
|
19
17
|
"capistrano-cm.gemspec",
|
|
20
18
|
"lib/capistrano/jsl/cm.rb"
|
|
21
19
|
]
|
|
22
|
-
|
|
20
|
+
|
|
21
|
+
s.homepage = "http://github.com/jsl/capistrano_cm"
|
|
23
22
|
s.require_paths = ["lib"]
|
|
24
|
-
s.summary =
|
|
23
|
+
s.summary = "Cap extensions to help with server configuration management"
|
|
25
24
|
|
|
26
25
|
s.add_dependency('capistrano')
|
|
27
26
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: capistrano-cm
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
|
|
4
|
+
hash: 25
|
|
5
|
+
prerelease: false
|
|
6
|
+
segments:
|
|
7
|
+
- 0
|
|
8
|
+
- 0
|
|
9
|
+
- 3
|
|
10
|
+
version: 0.0.3
|
|
5
11
|
platform: ruby
|
|
6
12
|
authors:
|
|
7
13
|
- Justin S. Leitgeb
|
|
@@ -14,16 +20,20 @@ default_executable:
|
|
|
14
20
|
dependencies:
|
|
15
21
|
- !ruby/object:Gem::Dependency
|
|
16
22
|
name: capistrano
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
23
|
+
prerelease: false
|
|
24
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
|
25
|
+
none: false
|
|
20
26
|
requirements:
|
|
21
27
|
- - ">="
|
|
22
28
|
- !ruby/object:Gem::Version
|
|
29
|
+
hash: 3
|
|
30
|
+
segments:
|
|
31
|
+
- 0
|
|
23
32
|
version: "0"
|
|
24
|
-
|
|
33
|
+
type: :runtime
|
|
34
|
+
version_requirements: *id001
|
|
25
35
|
description: Lightweight cap extensions to assist in server configuration management
|
|
26
|
-
email: justin@
|
|
36
|
+
email: justin@stackbuilders.com
|
|
27
37
|
executables: []
|
|
28
38
|
|
|
29
39
|
extensions: []
|
|
@@ -37,7 +47,7 @@ files:
|
|
|
37
47
|
- capistrano-cm.gemspec
|
|
38
48
|
- lib/capistrano/jsl/cm.rb
|
|
39
49
|
has_rdoc: true
|
|
40
|
-
homepage: http://github.com/jsl/
|
|
50
|
+
homepage: http://github.com/jsl/capistrano_cm
|
|
41
51
|
licenses: []
|
|
42
52
|
|
|
43
53
|
post_install_message:
|
|
@@ -46,21 +56,27 @@ rdoc_options: []
|
|
|
46
56
|
require_paths:
|
|
47
57
|
- lib
|
|
48
58
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
59
|
+
none: false
|
|
49
60
|
requirements:
|
|
50
61
|
- - ">="
|
|
51
62
|
- !ruby/object:Gem::Version
|
|
63
|
+
hash: 3
|
|
64
|
+
segments:
|
|
65
|
+
- 0
|
|
52
66
|
version: "0"
|
|
53
|
-
version:
|
|
54
67
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
68
|
+
none: false
|
|
55
69
|
requirements:
|
|
56
70
|
- - ">="
|
|
57
71
|
- !ruby/object:Gem::Version
|
|
72
|
+
hash: 3
|
|
73
|
+
segments:
|
|
74
|
+
- 0
|
|
58
75
|
version: "0"
|
|
59
|
-
version:
|
|
60
76
|
requirements: []
|
|
61
77
|
|
|
62
78
|
rubyforge_project:
|
|
63
|
-
rubygems_version: 1.3.
|
|
79
|
+
rubygems_version: 1.3.7
|
|
64
80
|
signing_key:
|
|
65
81
|
specification_version: 3
|
|
66
82
|
summary: Cap extensions to help with server configuration management
|