awsborn 0.8.6 → 0.8.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. data/.gitignore +23 -0
  2. data/VERSION +1 -1
  3. data/awsborn.gemspec +49 -36
  4. data/lib/awsborn/server.rb +0 -1
  5. metadata +17 -8
data/.gitignore ADDED
@@ -0,0 +1,23 @@
1
+ ## MAC OS
2
+ .DS_Store
3
+
4
+ ## TEXTMATE
5
+ *.tmproj
6
+ tmtags
7
+
8
+ ## EMACS
9
+ *~
10
+ \#*
11
+ .\#*
12
+
13
+ ## VIM
14
+ *.swp
15
+
16
+ ## PROJECT::GENERAL
17
+ coverage
18
+ rdoc
19
+ pkg
20
+ .rvmrc
21
+
22
+ ## PROJECT::SPECIFIC
23
+ awsborn.log
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.8.6
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 'rake gemspec'
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.6"
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-08-30}
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
- "README.mdown"
17
+ "README.mdown"
18
18
  ]
19
19
  s.files = [
20
20
  ".document",
21
- "LICENSE",
22
- "README.mdown",
23
- "Rakefile",
24
- "VERSION",
25
- "awsborn.gemspec",
26
- "contrib/chef-bootstrap.sh",
27
- "contrib/cookbooks/ec2-ebs/recipes/default.rb",
28
- "lib/awsborn.rb",
29
- "lib/awsborn/aws_constants.rb",
30
- "lib/awsborn/awsborn.rb",
31
- "lib/awsborn/ec2.rb",
32
- "lib/awsborn/elb.rb",
33
- "lib/awsborn/extensions/object.rb",
34
- "lib/awsborn/extensions/proc.rb",
35
- "lib/awsborn/git_branch.rb",
36
- "lib/awsborn/keychain.rb",
37
- "lib/awsborn/known_hosts_updater.rb",
38
- "lib/awsborn/load_balancer.rb",
39
- "lib/awsborn/rake.rb",
40
- "lib/awsborn/route53.rb",
41
- "lib/awsborn/server.rb",
42
- "lib/awsborn/server_cluster.rb",
43
- "spec/aws_constants_spec.rb",
44
- "spec/ec2_spec.rb",
45
- "spec/elb_spec.rb",
46
- "spec/known_hosts_updater_spec.rb",
47
- "spec/load_balancer_spec.rb",
48
- "spec/route53_spec.rb",
49
- "spec/server_cluster_spec.rb",
50
- "spec/server_spec.rb",
51
- "spec/spec.opts",
52
- "spec/spec_helper.rb"
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
@@ -211,7 +211,6 @@ module Awsborn
211
211
  logger.debug 'Looking up DNS name from volume ID'
212
212
  self.host_name = aws_dns_name
213
213
  logger.debug "got DNS name #{@host_name}"
214
- update_known_hosts
215
214
  end
216
215
  @host_name
217
216
  end
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: 51
4
+ hash: 49
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 8
9
- - 6
10
- version: 0.8.6
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-08-30 00:00:00 +02:00
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