ec2onrails 0.9.4 → 0.9.5
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/History.txt +7 -0
- data/lib/ec2onrails/version.rb +3 -3
- data/website/index.html +24 -13
- data/website/index.txt +16 -11
- metadata +2 -2
data/History.txt
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
== 0.9.5 2007-10-28
|
|
2
|
+
|
|
3
|
+
* ami-86c025ef (32-bit) and ami-99c025f0 (64-bit)
|
|
4
|
+
* This is another test release, still not intended to be production-ready until it's tested more thoroughly. Look for version 1.0.
|
|
5
|
+
* Fixed rebundling.
|
|
6
|
+
* Generates new ssh keys on first startup
|
|
7
|
+
|
|
1
8
|
== 0.9.4 2007-10-25
|
|
2
9
|
|
|
3
10
|
* ami-ecc12485 (32-bit) and ami-efc12486 (64-bit)
|
data/lib/ec2onrails/version.rb
CHANGED
|
@@ -20,10 +20,10 @@ module Ec2onrails #:nodoc:
|
|
|
20
20
|
module VERSION #:nodoc:
|
|
21
21
|
MAJOR = 0
|
|
22
22
|
MINOR = 9
|
|
23
|
-
TINY =
|
|
23
|
+
TINY = 5
|
|
24
24
|
STRING = [MAJOR, MINOR, TINY].join('.')
|
|
25
25
|
|
|
26
|
-
AMI_ID_32_BIT = 'ami-
|
|
27
|
-
AMI_ID_64_BIT = 'ami-
|
|
26
|
+
AMI_ID_32_BIT = 'ami-86c025ef'
|
|
27
|
+
AMI_ID_64_BIT = 'ami-99c025f0'
|
|
28
28
|
end
|
|
29
29
|
end
|
data/website/index.html
CHANGED
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
<h1>EC2 on Rails</h1>
|
|
34
34
|
<div id="version" class="clickable" onclick='document.location = "http://rubyforge.org/projects/ec2onrails"; return false'>
|
|
35
35
|
<p>Get Version</p>
|
|
36
|
-
<a href="http://rubyforge.org/projects/ec2onrails" class="numbers">0.9.
|
|
36
|
+
<a href="http://rubyforge.org/projects/ec2onrails" class="numbers">0.9.5</a>
|
|
37
37
|
</div>
|
|
38
38
|
<h2>Deploy a Ruby on Rails app on <span class="caps">EC2</span> in five minutes</h2>
|
|
39
39
|
|
|
@@ -59,18 +59,17 @@ your Rails app.</p>
|
|
|
59
59
|
<li>Automatic backup of MySQL database to S3.</li>
|
|
60
60
|
<li>Capistrano tasks to customize the server image, archive and restore the database to/from S3, and more (available as a rubygem).</li>
|
|
61
61
|
<li>Mongrel_cluster behind Apache 2.2, configured according to
|
|
62
|
-
<a href="http://blog.codahale.com/2006/06/19/time-for-a-grown-up-server-rails-mongrel-apache-capistrano-and-you/">Coda Hale’s excellent guide</a>
|
|
63
|
-
with /etc/init.d startup script</li>
|
|
62
|
+
<a href="http://blog.codahale.com/2006/06/19/time-for-a-grown-up-server-rails-mongrel-apache-capistrano-and-you/">Coda Hale’s excellent guide</a></li>
|
|
64
63
|
<li>Ruby on Rails 1.2.5</li>
|
|
65
64
|
<li>Ruby 1.8.6</li>
|
|
66
65
|
<li>MySQL 5</li>
|
|
67
|
-
<li>Ubuntu 7.10 “Gutsy” with <a href="http://wiki.xensource.com/xenwiki/XenSpecificGlibc">Xen versions of standard libs</a> (<a href="http://packages.ubuntu.com/
|
|
66
|
+
<li>Ubuntu 7.10 “Gutsy” with <a href="http://wiki.xensource.com/xenwiki/XenSpecificGlibc">Xen versions of standard libs</a> (<a href="http://packages.ubuntu.com/gutsy/libs/libc6-xen">libc6-xen</a> package).</li>
|
|
68
67
|
<li>Amazon <span class="caps">AMI</span> tools installed</li>
|
|
69
68
|
<li>A script to rebundle a customized version of the image in one step if required</li>
|
|
70
|
-
<li>MySQL and
|
|
69
|
+
<li>MySQL, Apache, and syslog configured to use /mnt for data and logging so you don’t fill up <span class="caps">EC2</span>’s small root filesystem</li>
|
|
71
70
|
<li>32-bit and 64-bit images available (supports all instance types, small to extra large).</li>
|
|
72
|
-
<li>Created using a
|
|
73
|
-
<li>Multiple instance support
|
|
71
|
+
<li>Created using a build file, full source is available.</li>
|
|
72
|
+
<li>Multiple instance support.</li>
|
|
74
73
|
</ul>
|
|
75
74
|
|
|
76
75
|
|
|
@@ -114,8 +113,8 @@ in Amazon’s getting started guide.</p>
|
|
|
114
113
|
|
|
115
114
|
The image id’s of the current images are:
|
|
116
115
|
<ul>
|
|
117
|
-
<li>32-bit: <strong>ami-
|
|
118
|
-
<li>64-bit: <strong>ami-
|
|
116
|
+
<li>32-bit: <strong>ami-86c025ef</strong>.</li>
|
|
117
|
+
<li>64-bit: <strong>ami-99c025f0</strong>.</li>
|
|
119
118
|
</ul>
|
|
120
119
|
|
|
121
120
|
|
|
@@ -283,17 +282,29 @@ or send me an <a href="http://pauldowman.com/contact/">email</a>.</p>
|
|
|
283
282
|
<p>Also see the <a href="http://rubyforge.org/tracker/?atid=17558&group_id=4552&func=browse">list of open issues</a>.</p>
|
|
284
283
|
|
|
285
284
|
|
|
285
|
+
<h4>0.9.5 ami-86c025ef (32-bit) and ami-99c025f0 (64-bit)</h4>
|
|
286
|
+
|
|
287
|
+
|
|
288
|
+
28 Oct, 2007
|
|
289
|
+
<ul>
|
|
290
|
+
<li>This is another test release, still not intended to be production-ready until it’s tested more thoroughly. Look for version 1.0.</li>
|
|
291
|
+
<li>Fixed rebundling.</li>
|
|
292
|
+
<li>Generates new ssh keys on first startup.</li>
|
|
293
|
+
</ul>
|
|
294
|
+
|
|
295
|
+
|
|
286
296
|
<h4>0.9.4, ami-ecc12485 (32-bit) and ami-efc12486 (64-bit)</h4>
|
|
287
297
|
|
|
288
298
|
|
|
289
299
|
7 Oct, 2007
|
|
290
300
|
<ul>
|
|
291
301
|
<li>This is another test release, still not intended to be production-ready until it’s tested more thoroughly. Look for version 1.0.</li>
|
|
292
|
-
<li><
|
|
293
|
-
|
|
302
|
+
<li><a href="http://rubyforge.org/tracker/?func=detail&aid=15047&group_id=4552&atid=17558">The rebundling doesn’t seem to be working</a>.
|
|
303
|
+
I’ll fix that in a new version.</li>
|
|
304
|
+
<li>Ubuntu 7.10/Gutsy (This means new versions of almost all packages. Ruby is now 1.8.6.)</li>
|
|
294
305
|
<li>Experimental multiple instance support.
|
|
295
306
|
<ul>
|
|
296
|
-
<li><strong>Mongrel & MySQL now listen on
|
|
307
|
+
<li><strong>Mongrel & MySQL now need to listen on the public network interface.</strong> Be sure your firewall settings are correct, and set a MySQL root password (use “cap ec2onrails:db:set_root_password”).</li>
|
|
297
308
|
</ul>
|
|
298
309
|
</li>
|
|
299
310
|
<li>RDoc and RI not generated for installed gems.</li>
|
|
@@ -389,7 +400,7 @@ or send me an <a href="http://pauldowman.com/contact/">email</a>.</p>
|
|
|
389
400
|
|
|
390
401
|
<p>This code is free to use under the terms of the <span class="caps">GPL</span> v2.</p>
|
|
391
402
|
<p class="coda">
|
|
392
|
-
<a href="http://pauldowman.com/contact/">Paul Dowman</a>,
|
|
403
|
+
<a href="http://pauldowman.com/contact/">Paul Dowman</a>, 28th October 2007<br>
|
|
393
404
|
Theme extended from <a href="http://rb2js.rubyforge.org/">Paul Battley</a>
|
|
394
405
|
</p>
|
|
395
406
|
</div>
|
data/website/index.txt
CHANGED
|
@@ -20,17 +20,16 @@ Features of the EC2 image:
|
|
|
20
20
|
* Capistrano tasks to customize the server image, archive and restore the database to/from S3, and more (available as a rubygem).
|
|
21
21
|
* Mongrel_cluster behind Apache 2.2, configured according to
|
|
22
22
|
"Coda Hale's excellent guide":http://blog.codahale.com/2006/06/19/time-for-a-grown-up-server-rails-mongrel-apache-capistrano-and-you/
|
|
23
|
-
with /etc/init.d startup script
|
|
24
23
|
* Ruby on Rails 1.2.5
|
|
25
24
|
* Ruby 1.8.6
|
|
26
25
|
* MySQL 5
|
|
27
|
-
* Ubuntu 7.10 "Gutsy" with "Xen versions of standard libs":http://wiki.xensource.com/xenwiki/XenSpecificGlibc ("libc6-xen":http://packages.ubuntu.com/
|
|
26
|
+
* Ubuntu 7.10 "Gutsy" with "Xen versions of standard libs":http://wiki.xensource.com/xenwiki/XenSpecificGlibc ("libc6-xen":http://packages.ubuntu.com/gutsy/libs/libc6-xen package).
|
|
28
27
|
* Amazon AMI tools installed
|
|
29
28
|
* A script to rebundle a customized version of the image in one step if required
|
|
30
|
-
* MySQL and
|
|
29
|
+
* MySQL, Apache, and syslog configured to use /mnt for data and logging so you don't fill up EC2's small root filesystem
|
|
31
30
|
* 32-bit and 64-bit images available (supports all instance types, small to extra large).
|
|
32
|
-
* Created using a
|
|
33
|
-
* Multiple instance support
|
|
31
|
+
* Created using a build file, full source is available.
|
|
32
|
+
* Multiple instance support.
|
|
34
33
|
|
|
35
34
|
|
|
36
35
|
h2. Using the image
|
|
@@ -63,8 +62,8 @@ Soon there will be a Capistrano task to do this for you. In the meantime read th
|
|
|
63
62
|
in Amazon's getting started guide.
|
|
64
63
|
|
|
65
64
|
The image id's of the current images are:
|
|
66
|
-
* 32-bit: *ami-
|
|
67
|
-
* 64-bit: *ami-
|
|
65
|
+
* 32-bit: *ami-86c025ef*.
|
|
66
|
+
* 64-bit: *ami-99c025f0*.
|
|
68
67
|
|
|
69
68
|
(Please read the change log below for release notes. NOTE: multiple
|
|
70
69
|
instance support isn't fully tested yet, look for version 1.0 soon!)
|
|
@@ -199,15 +198,22 @@ h2. Change log
|
|
|
199
198
|
|
|
200
199
|
Also see the "list of open issues":http://rubyforge.org/tracker/?atid=17558&group_id=4552&func=browse.
|
|
201
200
|
|
|
201
|
+
h4. 0.9.5 ami-86c025ef (32-bit) and ami-99c025f0 (64-bit)
|
|
202
|
+
|
|
203
|
+
28 Oct, 2007
|
|
204
|
+
* This is another test release, still not intended to be production-ready until it's tested more thoroughly. Look for version 1.0.
|
|
205
|
+
* Fixed rebundling.
|
|
206
|
+
* Generates new ssh keys on first startup.
|
|
202
207
|
|
|
203
208
|
h4. 0.9.4, ami-ecc12485 (32-bit) and ami-efc12486 (64-bit)
|
|
204
209
|
|
|
205
210
|
7 Oct, 2007
|
|
206
211
|
* This is another test release, still not intended to be production-ready until it's tested more thoroughly. Look for version 1.0.
|
|
207
|
-
*
|
|
208
|
-
|
|
212
|
+
* "The rebundling doesn't seem to be working":http://rubyforge.org/tracker/?func=detail&aid=15047&group_id=4552&atid=17558.
|
|
213
|
+
I'll fix that in a new version.
|
|
214
|
+
* Ubuntu 7.10/Gutsy (This means new versions of almost all packages. Ruby is now 1.8.6.)
|
|
209
215
|
* Experimental multiple instance support.
|
|
210
|
-
** *Mongrel & MySQL now listen on
|
|
216
|
+
** *Mongrel & MySQL now need to listen on the public network interface.* Be sure your firewall settings are correct, and set a MySQL root password (use "cap ec2onrails:db:set_root_password").
|
|
211
217
|
* RDoc and RI not generated for installed gems.
|
|
212
218
|
* No longer upgrades packages & gems on ec2onrails:server:setup task.
|
|
213
219
|
* 32-bit and 64-bit images.
|
|
@@ -217,7 +223,6 @@ h4. 0.9.4, ami-ecc12485 (32-bit) and ami-efc12486 (64-bit)
|
|
|
217
223
|
* syslog now logs to /mnt/log.
|
|
218
224
|
* Build now cleans apt cache, image is now 1/2 the size.
|
|
219
225
|
|
|
220
|
-
|
|
221
226
|
h4. 0.9.3, ami-a3f91cca
|
|
222
227
|
|
|
223
228
|
23 Oct, 2007
|
metadata
CHANGED
|
@@ -3,8 +3,8 @@ rubygems_version: 0.9.2
|
|
|
3
3
|
specification_version: 1
|
|
4
4
|
name: ec2onrails
|
|
5
5
|
version: !ruby/object:Gem::Version
|
|
6
|
-
version: 0.9.
|
|
7
|
-
date: 2007-10-
|
|
6
|
+
version: 0.9.5
|
|
7
|
+
date: 2007-10-28 00:00:00 -04:00
|
|
8
8
|
summary: Client-side libraries (Capistrano tasks) for managing and deploying to EC2 on Rails servers.
|
|
9
9
|
require_paths:
|
|
10
10
|
- lib
|