awsborn 0.8.6 → 0.8.7
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/.gitignore +23 -0
- data/VERSION +1 -1
- data/awsborn.gemspec +49 -36
- data/lib/awsborn/server.rb +0 -1
- metadata +17 -8
data/.gitignore
ADDED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.8.
|
|
1
|
+
0.8.7
|
data/awsborn.gemspec
CHANGED
|
@@ -1,60 +1,73 @@
|
|
|
1
1
|
# Generated by jeweler
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
|
-
# Instead, edit Jeweler::Tasks in Rakefile, and run
|
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{awsborn}
|
|
8
|
-
s.version = "0.8.
|
|
8
|
+
s.version = "0.8.7"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["David Vrensk", "Jean-Louis Giordano"]
|
|
12
|
-
s.date = %q{2011-
|
|
12
|
+
s.date = %q{2011-10-06}
|
|
13
13
|
s.description = %q{Awsborn lets you define and launch a server cluster on Amazon EC2.}
|
|
14
14
|
s.email = %q{david@icehouse.se}
|
|
15
15
|
s.extra_rdoc_files = [
|
|
16
16
|
"LICENSE",
|
|
17
|
-
|
|
17
|
+
"README.mdown"
|
|
18
18
|
]
|
|
19
19
|
s.files = [
|
|
20
20
|
".document",
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
21
|
+
".gitignore",
|
|
22
|
+
"LICENSE",
|
|
23
|
+
"README.mdown",
|
|
24
|
+
"Rakefile",
|
|
25
|
+
"VERSION",
|
|
26
|
+
"awsborn.gemspec",
|
|
27
|
+
"contrib/chef-bootstrap.sh",
|
|
28
|
+
"contrib/cookbooks/ec2-ebs/recipes/default.rb",
|
|
29
|
+
"lib/awsborn.rb",
|
|
30
|
+
"lib/awsborn/aws_constants.rb",
|
|
31
|
+
"lib/awsborn/awsborn.rb",
|
|
32
|
+
"lib/awsborn/ec2.rb",
|
|
33
|
+
"lib/awsborn/elb.rb",
|
|
34
|
+
"lib/awsborn/extensions/object.rb",
|
|
35
|
+
"lib/awsborn/extensions/proc.rb",
|
|
36
|
+
"lib/awsborn/git_branch.rb",
|
|
37
|
+
"lib/awsborn/keychain.rb",
|
|
38
|
+
"lib/awsborn/known_hosts_updater.rb",
|
|
39
|
+
"lib/awsborn/load_balancer.rb",
|
|
40
|
+
"lib/awsborn/rake.rb",
|
|
41
|
+
"lib/awsborn/route53.rb",
|
|
42
|
+
"lib/awsborn/server.rb",
|
|
43
|
+
"lib/awsborn/server_cluster.rb",
|
|
44
|
+
"spec/aws_constants_spec.rb",
|
|
45
|
+
"spec/ec2_spec.rb",
|
|
46
|
+
"spec/elb_spec.rb",
|
|
47
|
+
"spec/known_hosts_updater_spec.rb",
|
|
48
|
+
"spec/load_balancer_spec.rb",
|
|
49
|
+
"spec/route53_spec.rb",
|
|
50
|
+
"spec/server_cluster_spec.rb",
|
|
51
|
+
"spec/server_spec.rb",
|
|
52
|
+
"spec/spec.opts",
|
|
53
|
+
"spec/spec_helper.rb"
|
|
53
54
|
]
|
|
54
55
|
s.homepage = %q{http://github.com/icehouse/awsborn}
|
|
56
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
|
55
57
|
s.require_paths = ["lib"]
|
|
56
58
|
s.rubygems_version = %q{1.3.7}
|
|
57
59
|
s.summary = %q{Awsborn defines servers as instances with a certain disk volume, which makes it easy to restart missing servers.}
|
|
60
|
+
s.test_files = [
|
|
61
|
+
"spec/aws_constants_spec.rb",
|
|
62
|
+
"spec/ec2_spec.rb",
|
|
63
|
+
"spec/elb_spec.rb",
|
|
64
|
+
"spec/known_hosts_updater_spec.rb",
|
|
65
|
+
"spec/load_balancer_spec.rb",
|
|
66
|
+
"spec/route53_spec.rb",
|
|
67
|
+
"spec/server_cluster_spec.rb",
|
|
68
|
+
"spec/server_spec.rb",
|
|
69
|
+
"spec/spec_helper.rb"
|
|
70
|
+
]
|
|
58
71
|
|
|
59
72
|
if s.respond_to? :specification_version then
|
|
60
73
|
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
data/lib/awsborn/server.rb
CHANGED
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: awsborn
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 49
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 8
|
|
9
|
-
-
|
|
10
|
-
version: 0.8.
|
|
9
|
+
- 7
|
|
10
|
+
version: 0.8.7
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- David Vrensk
|
|
@@ -16,7 +16,7 @@ autorequire:
|
|
|
16
16
|
bindir: bin
|
|
17
17
|
cert_chain: []
|
|
18
18
|
|
|
19
|
-
date: 2011-
|
|
19
|
+
date: 2011-10-06 00:00:00 +02:00
|
|
20
20
|
default_executable:
|
|
21
21
|
dependencies:
|
|
22
22
|
- !ruby/object:Gem::Dependency
|
|
@@ -108,6 +108,7 @@ extra_rdoc_files:
|
|
|
108
108
|
- README.mdown
|
|
109
109
|
files:
|
|
110
110
|
- .document
|
|
111
|
+
- .gitignore
|
|
111
112
|
- LICENSE
|
|
112
113
|
- README.mdown
|
|
113
114
|
- Rakefile
|
|
@@ -145,8 +146,8 @@ homepage: http://github.com/icehouse/awsborn
|
|
|
145
146
|
licenses: []
|
|
146
147
|
|
|
147
148
|
post_install_message:
|
|
148
|
-
rdoc_options:
|
|
149
|
-
|
|
149
|
+
rdoc_options:
|
|
150
|
+
- --charset=UTF-8
|
|
150
151
|
require_paths:
|
|
151
152
|
- lib
|
|
152
153
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
@@ -174,5 +175,13 @@ rubygems_version: 1.3.7
|
|
|
174
175
|
signing_key:
|
|
175
176
|
specification_version: 3
|
|
176
177
|
summary: Awsborn defines servers as instances with a certain disk volume, which makes it easy to restart missing servers.
|
|
177
|
-
test_files:
|
|
178
|
-
|
|
178
|
+
test_files:
|
|
179
|
+
- spec/aws_constants_spec.rb
|
|
180
|
+
- spec/ec2_spec.rb
|
|
181
|
+
- spec/elb_spec.rb
|
|
182
|
+
- spec/known_hosts_updater_spec.rb
|
|
183
|
+
- spec/load_balancer_spec.rb
|
|
184
|
+
- spec/route53_spec.rb
|
|
185
|
+
- spec/server_cluster_spec.rb
|
|
186
|
+
- spec/server_spec.rb
|
|
187
|
+
- spec/spec_helper.rb
|