amazon-ec2 0.2.4 → 0.2.5

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,6 @@
1
1
  body {
2
2
  background-color: #FFFFFF;
3
- font-family: "Helvetica", sans-serif;
3
+ font-family: "Georgia", sans-serif;
4
4
  font-size: 16px;
5
5
  line-height: 1.6em;
6
6
  padding: 1.6em 0 0 0;
@@ -23,8 +23,8 @@ li {
23
23
  list-style-type: square;
24
24
  }
25
25
  a {
26
- color: #000000;
27
- background-color: #FFFFCC;
26
+ color: #5E5AFF;
27
+ background-color: #DAC;
28
28
  font-weight: normal;
29
29
  text-decoration: underline;
30
30
  }
@@ -39,7 +39,7 @@ blockquote {
39
39
  }
40
40
 
41
41
  #main {
42
- width: 47em;
42
+ width: 45em;
43
43
  padding: 0;
44
44
  margin: 0 auto;
45
45
  }
@@ -79,9 +79,9 @@ td {
79
79
  }
80
80
  pre, code {
81
81
  font-family: monospace;
82
- font-size: 80%;
83
- line-height: 1.2em;
84
- color: #FFFFFF;
82
+ font-size: 90%;
83
+ line-height: 1.4em;
84
+ color: #ff8;
85
85
  background-color: #111;
86
86
  padding: 2px 10px 2px 10px;
87
87
  }
@@ -114,6 +114,15 @@ pre, code {
114
114
  font-size: 4em;
115
115
  line-height: 0.8em;
116
116
  letter-spacing: -0.1ex;
117
+ margin-bottom: 15px;
118
+ }
119
+
120
+ #version p {
121
+ text-decoration: none;
122
+ color: #141331;
123
+ background-color: #B3ABFF;
124
+ margin: 0;
125
+ padding: 0;
117
126
  }
118
127
 
119
128
  #version a {
@@ -32,7 +32,7 @@
32
32
 
33
33
  <h1><%= title %></h1>
34
34
  <div id="version" class="clickable" onclick='document.location = "<%= download %>"; return false'>
35
- Get Version
35
+ <p>Get Version</p>
36
36
  <a href="<%= download %>" class="numbers"><%= version %></a>
37
37
  </div>
38
38
  <%= body %>
metadata CHANGED
@@ -3,12 +3,12 @@ rubygems_version: 0.9.4
3
3
  specification_version: 1
4
4
  name: amazon-ec2
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.2.4
7
- date: 2007-07-09 00:00:00 -07:00
6
+ version: 0.2.5
7
+ date: 2007-09-26 00:00:00 -07:00
8
8
  summary: An interface library that allows Ruby or Ruby on Rails applications to easily connect to the HTTP 'Query API' for the Amazon Web Services Elastic Compute Cloud (EC2) and manipulate server instances.
9
9
  require_paths:
10
10
  - lib
11
- email: glenn@elasticworkbench.com
11
+ email: grempe@rubyforge.org
12
12
  homepage: http://amazon-ec2.rubyforge.org
13
13
  rubyforge_project: amazon-ec2
14
14
  description: An interface library that allows Ruby or Ruby on Rails applications to easily connect to the HTTP 'Query API' for the Amazon Web Services Elastic Compute Cloud (EC2) and manipulate server instances.
@@ -30,26 +30,33 @@ authors:
30
30
  - Glenn Rempe
31
31
  files:
32
32
  - History.txt
33
- - bin/ec2sh
33
+ - License.txt
34
+ - Manifest.txt
35
+ - README.txt
36
+ - Rakefile
34
37
  - bin/ec2-gem-example.rb
38
+ - bin/ec2sh
35
39
  - bin/setup.rb
40
+ - config/hoe.rb
41
+ - config/requirements.rb
36
42
  - lib/EC2.rb
37
43
  - lib/EC2/console.rb
38
44
  - lib/EC2/exceptions.rb
39
- - lib/EC2/version.rb
40
- - lib/EC2/responses.rb
45
+ - lib/EC2/image_attributes.rb
41
46
  - lib/EC2/images.rb
42
47
  - lib/EC2/instances.rb
43
48
  - lib/EC2/keypairs.rb
44
49
  - lib/EC2/products.rb
45
- - lib/EC2/image_attributes.rb
50
+ - lib/EC2/responses.rb
46
51
  - lib/EC2/security_groups.rb
47
- - License.txt
48
- - Manifest.txt
49
- - Rakefile
50
- - README.txt
51
- - scripts/txt2html
52
+ - lib/EC2/version.rb
53
+ - script/destroy
54
+ - script/generate
55
+ - script/txt2html
52
56
  - setup.rb
57
+ - tasks/deployment.rake
58
+ - tasks/environment.rake
59
+ - tasks/website.rake
53
60
  - test/test_EC2.rb
54
61
  - test/test_EC2_console.rb
55
62
  - test/test_EC2_image_attributes.rb
@@ -61,6 +68,8 @@ files:
61
68
  - test/test_EC2_security_groups.rb
62
69
  - test/test_EC2_version.rb
63
70
  - test/test_helper.rb
71
+ - website/announce.html
72
+ - website/announce.txt
64
73
  - website/index.html
65
74
  - website/index.txt
66
75
  - website/javascripts/rounded_corners_lite.inc.js
@@ -81,7 +90,7 @@ test_files:
81
90
  rdoc_options:
82
91
  - --quiet
83
92
  - --title
84
- - Amazon EC2 documentation
93
+ - amazon-ec2 documentation
85
94
  - --opname
86
95
  - index.html
87
96
  - --line-numbers
@@ -93,8 +102,8 @@ extra_rdoc_files:
93
102
  - History.txt
94
103
  - License.txt
95
104
  executables:
96
- - ec2sh
97
105
  - ec2-gem-example.rb
106
+ - ec2sh
98
107
  - setup.rb
99
108
  extensions: []
100
109