capistrano-provisioning 0.0.3 → 0.0.4
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/Rakefile +3 -3
- data/VERSION +1 -1
- data/capistrano-provisioning.gemspec +4 -4
- data/pkg/capistrano-provisioning-0.0.3.gem +0 -0
- metadata +5 -5
data/Rakefile
CHANGED
@@ -5,10 +5,10 @@ begin
|
|
5
5
|
require 'jeweler'
|
6
6
|
Jeweler::Tasks.new do |gem|
|
7
7
|
gem.name = "capistrano-provisioning"
|
8
|
-
gem.summary = %Q{Capistrano
|
9
|
-
gem.description = %Q{Capistrano provisioning}
|
8
|
+
gem.summary = %Q{Provision clusters of servers with Capistrano}
|
9
|
+
gem.description = %Q{Capistrano Provisioning is an extension to Capistrano that allows you to define clusters of servers and run provisioning tasks on them, such as installing users. It is a replacement for the fabric gem (http://rubygems.org/gems/fabric).}
|
10
10
|
gem.email = "sam@samdanavia.com"
|
11
|
-
gem.homepage = "http://github.com/
|
11
|
+
gem.homepage = "http://github.com/setfire/capistrano-provisioning"
|
12
12
|
gem.authors = ["Sam Phillips"]
|
13
13
|
gem.add_dependency "capistrano", ">= 2.5.18"
|
14
14
|
gem.add_development_dependency "rspec", ">= 1.2.9"
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.4
|
@@ -5,12 +5,12 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{capistrano-provisioning}
|
8
|
-
s.version = "0.0.
|
8
|
+
s.version = "0.0.4"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Sam Phillips"]
|
12
12
|
s.date = %q{2010-06-16}
|
13
|
-
s.description = %q{Capistrano provisioning}
|
13
|
+
s.description = %q{Capistrano Provisioning is an extension to Capistrano that allows you to define clusters of servers and run provisioning tasks on them, such as installing users. It is a replacement for the fabric gem (http://rubygems.org/gems/fabric).}
|
14
14
|
s.email = %q{sam@samdanavia.com}
|
15
15
|
s.extra_rdoc_files = [
|
16
16
|
"LICENSE",
|
@@ -38,11 +38,11 @@ Gem::Specification.new do |s|
|
|
38
38
|
"spec/spec_helper.rb",
|
39
39
|
"spec/user_spec.rb"
|
40
40
|
]
|
41
|
-
s.homepage = %q{http://github.com/
|
41
|
+
s.homepage = %q{http://github.com/setfire/capistrano-provisioning}
|
42
42
|
s.rdoc_options = ["--charset=UTF-8"]
|
43
43
|
s.require_paths = ["lib"]
|
44
44
|
s.rubygems_version = %q{1.3.6}
|
45
|
-
s.summary = %q{Capistrano
|
45
|
+
s.summary = %q{Provision clusters of servers with Capistrano}
|
46
46
|
s.test_files = [
|
47
47
|
"spec/cluster_spec.rb",
|
48
48
|
"spec/namespaces_spec.rb",
|
Binary file
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 0
|
8
|
-
-
|
9
|
-
version: 0.0.
|
8
|
+
- 4
|
9
|
+
version: 0.0.4
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Sam Phillips
|
@@ -45,7 +45,7 @@ dependencies:
|
|
45
45
|
version: 1.2.9
|
46
46
|
type: :development
|
47
47
|
version_requirements: *id002
|
48
|
-
description: Capistrano provisioning
|
48
|
+
description: Capistrano Provisioning is an extension to Capistrano that allows you to define clusters of servers and run provisioning tasks on them, such as installing users. It is a replacement for the fabric gem (http://rubygems.org/gems/fabric).
|
49
49
|
email: sam@samdanavia.com
|
50
50
|
executables: []
|
51
51
|
|
@@ -76,7 +76,7 @@ files:
|
|
76
76
|
- spec/spec_helper.rb
|
77
77
|
- spec/user_spec.rb
|
78
78
|
has_rdoc: true
|
79
|
-
homepage: http://github.com/
|
79
|
+
homepage: http://github.com/setfire/capistrano-provisioning
|
80
80
|
licenses: []
|
81
81
|
|
82
82
|
post_install_message:
|
@@ -104,7 +104,7 @@ rubyforge_project:
|
|
104
104
|
rubygems_version: 1.3.6
|
105
105
|
signing_key:
|
106
106
|
specification_version: 3
|
107
|
-
summary: Capistrano
|
107
|
+
summary: Provision clusters of servers with Capistrano
|
108
108
|
test_files:
|
109
109
|
- spec/cluster_spec.rb
|
110
110
|
- spec/namespaces_spec.rb
|