hennk-hennk-ec2onrails 0.9.9.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (150) hide show
  1. data/CHANGELOG +0 -0
  2. data/COPYING +339 -0
  3. data/Manifest +148 -0
  4. data/README.textile +214 -0
  5. data/Rakefile +36 -0
  6. data/TODO +5 -0
  7. data/ec2onrails.gemspec +44 -0
  8. data/lib/ec2onrails/capistrano_utils.rb +33 -0
  9. data/lib/ec2onrails/recipes.rb +460 -0
  10. data/lib/ec2onrails/version.rb +32 -0
  11. data/lib/ec2onrails.rb +20 -0
  12. data/server/build-ec2onrails.sh +44 -0
  13. data/server/files/etc/aliases +6 -0
  14. data/server/files/etc/aliases.db +0 -0
  15. data/server/files/etc/apache2/apache2.conf +295 -0
  16. data/server/files/etc/apache2/conf.d/app.proxy_cluster.conf +7 -0
  17. data/server/files/etc/apache2/conf.d/app.proxy_frontend.conf +10 -0
  18. data/server/files/etc/apache2/mods-available/proxy.conf +18 -0
  19. data/server/files/etc/apache2/sites-available/app.common +58 -0
  20. data/server/files/etc/apache2/sites-available/app.custom +0 -0
  21. data/server/files/etc/apache2/sites-available/default +17 -0
  22. data/server/files/etc/apache2/sites-available/default-ssl +18 -0
  23. data/server/files/etc/cron.d/backup_app_db_to_s3 +6 -0
  24. data/server/files/etc/cron.daily/app +5 -0
  25. data/server/files/etc/cron.daily/logrotate_post +27 -0
  26. data/server/files/etc/cron.hourly/app +5 -0
  27. data/server/files/etc/cron.monthly/app +5 -0
  28. data/server/files/etc/cron.weekly/app +5 -0
  29. data/server/files/etc/denyhosts.conf +628 -0
  30. data/server/files/etc/dpkg/dpkg.cfg +13 -0
  31. data/server/files/etc/ec2onrails/balancer_members +6 -0
  32. data/server/files/etc/ec2onrails/roles.yml +5 -0
  33. data/server/files/etc/environment +2 -0
  34. data/server/files/etc/event.d/monit +13 -0
  35. data/server/files/etc/init.d/ec2-every-startup +29 -0
  36. data/server/files/etc/init.d/ec2-first-startup +36 -0
  37. data/server/files/etc/init.d/mongrel +91 -0
  38. data/server/files/etc/init.d/set_roles +3 -0
  39. data/server/files/etc/logrotate.d/apache2 +13 -0
  40. data/server/files/etc/logrotate.d/mysql-server +23 -0
  41. data/server/files/etc/logrotate.d/rails +7 -0
  42. data/server/files/etc/memcached.conf +47 -0
  43. data/server/files/etc/mongrel_cluster/app.yml +9 -0
  44. data/server/files/etc/monit/app.monitrc +71 -0
  45. data/server/files/etc/monit/db_primary.monitrc +10 -0
  46. data/server/files/etc/monit/memcache.monitrc +8 -0
  47. data/server/files/etc/monit/monitrc +13 -0
  48. data/server/files/etc/monit/system.monitrc +15 -0
  49. data/server/files/etc/monit/web.monitrc +10 -0
  50. data/server/files/etc/motd.tail +13 -0
  51. data/server/files/etc/mysql/my.cnf +149 -0
  52. data/server/files/etc/postfix/main.cf +4 -0
  53. data/server/files/etc/rc0.d/K10mongrel +91 -0
  54. data/server/files/etc/rc1.d/K10mongrel +91 -0
  55. data/server/files/etc/rc2.d/S90mongrel +91 -0
  56. data/server/files/etc/rc3.d/S90mongrel +91 -0
  57. data/server/files/etc/rc4.d/S90mongrel +91 -0
  58. data/server/files/etc/rc5.d/S90mongrel +91 -0
  59. data/server/files/etc/rc6.d/K10mongrel +91 -0
  60. data/server/files/etc/rcS.d/S91ec2-first-startup +36 -0
  61. data/server/files/etc/rcS.d/S92ec2-every-startup +29 -0
  62. data/server/files/etc/rcS.d/S99set_roles +3 -0
  63. data/server/files/etc/ssh/sshd_config +94 -0
  64. data/server/files/etc/sudoers +24 -0
  65. data/server/files/etc/syslog.conf +69 -0
  66. data/server/files/usr/local/ec2onrails/COPYING +339 -0
  67. data/server/files/usr/local/ec2onrails/bin/archive_file.rb +44 -0
  68. data/server/files/usr/local/ec2onrails/bin/backup_app_db.rb +83 -0
  69. data/server/files/usr/local/ec2onrails/bin/backup_files.rb +51 -0
  70. data/server/files/usr/local/ec2onrails/bin/mongrel_start +8 -0
  71. data/server/files/usr/local/ec2onrails/bin/mongrel_stop +8 -0
  72. data/server/files/usr/local/ec2onrails/bin/rails_env +35 -0
  73. data/server/files/usr/local/ec2onrails/bin/rebundle.sh +70 -0
  74. data/server/files/usr/local/ec2onrails/bin/restore_app_db.rb +58 -0
  75. data/server/files/usr/local/ec2onrails/bin/restore_files.rb +59 -0
  76. data/server/files/usr/local/ec2onrails/bin/set_rails_env +40 -0
  77. data/server/files/usr/local/ec2onrails/bin/set_roles.rb +156 -0
  78. data/server/files/usr/local/ec2onrails/config +30 -0
  79. data/server/files/usr/local/ec2onrails/lib/mysql_helper.rb +101 -0
  80. data/server/files/usr/local/ec2onrails/lib/s3_helper.rb +126 -0
  81. data/server/files/usr/local/ec2onrails/lib/utils.rb +16 -0
  82. data/server/files/usr/local/ec2onrails/startup-scripts/every-startup/get-hostname.sh +25 -0
  83. data/server/files/usr/local/ec2onrails/startup-scripts/first-startup/create-dirs.sh +39 -0
  84. data/server/files/usr/local/ec2onrails/startup-scripts/first-startup/generate-default-web-cert-and-key.sh +49 -0
  85. data/server/files/usr/local/ec2onrails/startup-scripts/first-startup/misc.sh +30 -0
  86. data/server/files/usr/local/ec2onrails/startup-scripts/first-startup/prepare-mysql-data-dir.sh +24 -0
  87. data/server/files/usr/local/ec2onrails/startup-scripts/first-startup/setup_credentials.sh +33 -0
  88. data/server/rakefile.rb +245 -0
  89. data/setup.rb +1585 -0
  90. data/test/autobench.conf +60 -0
  91. data/test/spec/lib/s3_helper_spec.rb +134 -0
  92. data/test/spec/lib/s3_old.yml +3 -0
  93. data/test/spec/test_files/test1 +0 -0
  94. data/test/spec/test_files/test2 +0 -0
  95. data/test/test_app/Capfile +3 -0
  96. data/test/test_app/README +182 -0
  97. data/test/test_app/Rakefile +10 -0
  98. data/test/test_app/app/controllers/application.rb +7 -0
  99. data/test/test_app/app/controllers/db_fast_controller.rb +6 -0
  100. data/test/test_app/app/controllers/fast_controller.rb +5 -0
  101. data/test/test_app/app/controllers/slow_controller.rb +6 -0
  102. data/test/test_app/app/controllers/very_slow_controller.rb +6 -0
  103. data/test/test_app/app/helpers/application_helper.rb +3 -0
  104. data/test/test_app/app/helpers/db_fast_helper.rb +2 -0
  105. data/test/test_app/app/helpers/fast_helper.rb +2 -0
  106. data/test/test_app/app/helpers/slow_helper.rb +2 -0
  107. data/test/test_app/app/helpers/very_slow_helper.rb +2 -0
  108. data/test/test_app/config/boot.rb +109 -0
  109. data/test/test_app/config/database.yml +36 -0
  110. data/test/test_app/config/deploy.rb +21 -0
  111. data/test/test_app/config/environment.rb +60 -0
  112. data/test/test_app/config/environments/development.rb +21 -0
  113. data/test/test_app/config/environments/production.rb +18 -0
  114. data/test/test_app/config/environments/test.rb +19 -0
  115. data/test/test_app/config/routes.rb +27 -0
  116. data/test/test_app/db/schema.rb +7 -0
  117. data/test/test_app/doc/README_FOR_APP +2 -0
  118. data/test/test_app/public/404.html +30 -0
  119. data/test/test_app/public/500.html +30 -0
  120. data/test/test_app/public/dispatch.cgi +10 -0
  121. data/test/test_app/public/dispatch.fcgi +24 -0
  122. data/test/test_app/public/dispatch.rb +10 -0
  123. data/test/test_app/public/favicon.ico +0 -0
  124. data/test/test_app/public/images/rails.png +0 -0
  125. data/test/test_app/public/javascripts/application.js +2 -0
  126. data/test/test_app/public/javascripts/controls.js +963 -0
  127. data/test/test_app/public/javascripts/dragdrop.js +972 -0
  128. data/test/test_app/public/javascripts/effects.js +1120 -0
  129. data/test/test_app/public/javascripts/prototype.js +4225 -0
  130. data/test/test_app/public/robots.txt +1 -0
  131. data/test/test_app/script/about +3 -0
  132. data/test/test_app/script/breakpointer +3 -0
  133. data/test/test_app/script/console +3 -0
  134. data/test/test_app/script/destroy +3 -0
  135. data/test/test_app/script/generate +3 -0
  136. data/test/test_app/script/performance/benchmarker +3 -0
  137. data/test/test_app/script/performance/profiler +3 -0
  138. data/test/test_app/script/performance/request +3 -0
  139. data/test/test_app/script/plugin +3 -0
  140. data/test/test_app/script/process/inspector +3 -0
  141. data/test/test_app/script/process/reaper +3 -0
  142. data/test/test_app/script/process/spawner +3 -0
  143. data/test/test_app/script/runner +3 -0
  144. data/test/test_app/script/server +3 -0
  145. data/test/test_app/test/functional/db_fast_controller_test.rb +18 -0
  146. data/test/test_app/test/functional/fast_controller_test.rb +18 -0
  147. data/test/test_app/test/functional/slow_controller_test.rb +18 -0
  148. data/test/test_app/test/functional/very_slow_controller_test.rb +18 -0
  149. data/test/test_app/test/test_helper.rb +28 -0
  150. metadata +263 -0
@@ -0,0 +1 @@
1
+ # See http://www.robotstxt.org/wc/norobots.html for documentation on how to use the robots.txt file
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../config/boot'
3
+ require 'commands/about'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../config/boot'
3
+ require 'commands/breakpointer'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../config/boot'
3
+ require 'commands/console'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../config/boot'
3
+ require 'commands/destroy'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../config/boot'
3
+ require 'commands/generate'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../../config/boot'
3
+ require 'commands/performance/benchmarker'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../../config/boot'
3
+ require 'commands/performance/profiler'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../../config/boot'
3
+ require 'commands/performance/request'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../config/boot'
3
+ require 'commands/plugin'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../../config/boot'
3
+ require 'commands/process/inspector'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../../config/boot'
3
+ require 'commands/process/reaper'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../../config/boot'
3
+ require 'commands/process/spawner'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../config/boot'
3
+ require 'commands/runner'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../config/boot'
3
+ require 'commands/server'
@@ -0,0 +1,18 @@
1
+ require File.dirname(__FILE__) + '/../test_helper'
2
+ require 'db_fast_controller'
3
+
4
+ # Re-raise errors caught by the controller.
5
+ class DbFastController; def rescue_action(e) raise e end; end
6
+
7
+ class DbFastControllerTest < Test::Unit::TestCase
8
+ def setup
9
+ @controller = DbFastController.new
10
+ @request = ActionController::TestRequest.new
11
+ @response = ActionController::TestResponse.new
12
+ end
13
+
14
+ # Replace this with your real tests.
15
+ def test_truth
16
+ assert true
17
+ end
18
+ end
@@ -0,0 +1,18 @@
1
+ require File.dirname(__FILE__) + '/../test_helper'
2
+ require 'fast_controller'
3
+
4
+ # Re-raise errors caught by the controller.
5
+ class FastController; def rescue_action(e) raise e end; end
6
+
7
+ class FastControllerTest < Test::Unit::TestCase
8
+ def setup
9
+ @controller = FastController.new
10
+ @request = ActionController::TestRequest.new
11
+ @response = ActionController::TestResponse.new
12
+ end
13
+
14
+ # Replace this with your real tests.
15
+ def test_truth
16
+ assert true
17
+ end
18
+ end
@@ -0,0 +1,18 @@
1
+ require File.dirname(__FILE__) + '/../test_helper'
2
+ require 'slow_controller'
3
+
4
+ # Re-raise errors caught by the controller.
5
+ class SlowController; def rescue_action(e) raise e end; end
6
+
7
+ class SlowControllerTest < Test::Unit::TestCase
8
+ def setup
9
+ @controller = SlowController.new
10
+ @request = ActionController::TestRequest.new
11
+ @response = ActionController::TestResponse.new
12
+ end
13
+
14
+ # Replace this with your real tests.
15
+ def test_truth
16
+ assert true
17
+ end
18
+ end
@@ -0,0 +1,18 @@
1
+ require File.dirname(__FILE__) + '/../test_helper'
2
+ require 'very_slow_controller'
3
+
4
+ # Re-raise errors caught by the controller.
5
+ class VerySlowController; def rescue_action(e) raise e end; end
6
+
7
+ class VerySlowControllerTest < Test::Unit::TestCase
8
+ def setup
9
+ @controller = VerySlowController.new
10
+ @request = ActionController::TestRequest.new
11
+ @response = ActionController::TestResponse.new
12
+ end
13
+
14
+ # Replace this with your real tests.
15
+ def test_truth
16
+ assert true
17
+ end
18
+ end
@@ -0,0 +1,28 @@
1
+ ENV["RAILS_ENV"] = "test"
2
+ require File.expand_path(File.dirname(__FILE__) + "/../config/environment")
3
+ require 'test_help'
4
+
5
+ class Test::Unit::TestCase
6
+ # Transactional fixtures accelerate your tests by wrapping each test method
7
+ # in a transaction that's rolled back on completion. This ensures that the
8
+ # test database remains unchanged so your fixtures don't have to be reloaded
9
+ # between every test method. Fewer database queries means faster tests.
10
+ #
11
+ # Read Mike Clark's excellent walkthrough at
12
+ # http://clarkware.com/cgi/blosxom/2005/10/24#Rails10FastTesting
13
+ #
14
+ # Every Active Record database supports transactions except MyISAM tables
15
+ # in MySQL. Turn off transactional fixtures in this case; however, if you
16
+ # don't care one way or the other, switching from MyISAM to InnoDB tables
17
+ # is recommended.
18
+ self.use_transactional_fixtures = true
19
+
20
+ # Instantiated fixtures are slow, but give you @david where otherwise you
21
+ # would need people(:david). If you don't want to migrate your existing
22
+ # test cases which use the @david style and don't mind the speed hit (each
23
+ # instantiated fixtures translates to a database query per test method),
24
+ # then set this back to true.
25
+ self.use_instantiated_fixtures = false
26
+
27
+ # Add more helper methods to be used by all tests here...
28
+ end
metadata ADDED
@@ -0,0 +1,263 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: hennk-hennk-ec2onrails
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.9.9.2
5
+ platform: ruby
6
+ authors:
7
+ - Paul Dowman, Adam Greene
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2008-11-16 00:00:00 -08:00
13
+ default_executable:
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: capistrano
17
+ type: :runtime
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: "0"
24
+ - - "="
25
+ - !ruby/object:Gem::Version
26
+ version: 2.4.3
27
+ version:
28
+ - !ruby/object:Gem::Dependency
29
+ name: archive-tar-minitar
30
+ type: :runtime
31
+ version_requirement:
32
+ version_requirements: !ruby/object:Gem::Requirement
33
+ requirements:
34
+ - - ">="
35
+ - !ruby/object:Gem::Version
36
+ version: "0"
37
+ - - "="
38
+ - !ruby/object:Gem::Version
39
+ version: 0.5.1
40
+ version:
41
+ - !ruby/object:Gem::Dependency
42
+ name: optiflag
43
+ type: :runtime
44
+ version_requirement:
45
+ version_requirements: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - ">="
48
+ - !ruby/object:Gem::Version
49
+ version: "0"
50
+ - - "="
51
+ - !ruby/object:Gem::Version
52
+ version: 0.6.5
53
+ version:
54
+ - !ruby/object:Gem::Dependency
55
+ name: rake
56
+ type: :development
57
+ version_requirement:
58
+ version_requirements: !ruby/object:Gem::Requirement
59
+ requirements:
60
+ - - ">="
61
+ - !ruby/object:Gem::Version
62
+ version: 0.7.1
63
+ version:
64
+ description: Client-side libraries (Capistrano tasks) for managing and deploying to EC2 on Rails servers.
65
+ email: paul@pauldowman.com
66
+ executables: []
67
+
68
+ extensions: []
69
+
70
+ extra_rdoc_files:
71
+ - CHANGELOG
72
+ - lib/ec2onrails/capistrano_utils.rb
73
+ - lib/ec2onrails/recipes.rb
74
+ - lib/ec2onrails/version.rb
75
+ - lib/ec2onrails.rb
76
+ - README.textile
77
+ files:
78
+ - CHANGELOG
79
+ - COPYING
80
+ - lib/ec2onrails/capistrano_utils.rb
81
+ - lib/ec2onrails/recipes.rb
82
+ - lib/ec2onrails/version.rb
83
+ - lib/ec2onrails.rb
84
+ - Rakefile
85
+ - README.textile
86
+ - server/build-ec2onrails.sh
87
+ - server/files/etc/aliases
88
+ - server/files/etc/aliases.db
89
+ - server/files/etc/apache2/apache2.conf
90
+ - server/files/etc/apache2/conf.d/app.proxy_cluster.conf
91
+ - server/files/etc/apache2/conf.d/app.proxy_frontend.conf
92
+ - server/files/etc/apache2/mods-available/proxy.conf
93
+ - server/files/etc/apache2/sites-available/app.common
94
+ - server/files/etc/apache2/sites-available/app.custom
95
+ - server/files/etc/apache2/sites-available/default
96
+ - server/files/etc/apache2/sites-available/default-ssl
97
+ - server/files/etc/cron.d/backup_app_db_to_s3
98
+ - server/files/etc/cron.daily/app
99
+ - server/files/etc/cron.daily/logrotate_post
100
+ - server/files/etc/cron.hourly/app
101
+ - server/files/etc/cron.monthly/app
102
+ - server/files/etc/cron.weekly/app
103
+ - server/files/etc/denyhosts.conf
104
+ - server/files/etc/dpkg/dpkg.cfg
105
+ - server/files/etc/ec2onrails/balancer_members
106
+ - server/files/etc/ec2onrails/roles.yml
107
+ - server/files/etc/environment
108
+ - server/files/etc/event.d/monit
109
+ - server/files/etc/init.d/ec2-every-startup
110
+ - server/files/etc/init.d/ec2-first-startup
111
+ - server/files/etc/init.d/mongrel
112
+ - server/files/etc/init.d/set_roles
113
+ - server/files/etc/logrotate.d/apache2
114
+ - server/files/etc/logrotate.d/mysql-server
115
+ - server/files/etc/logrotate.d/rails
116
+ - server/files/etc/memcached.conf
117
+ - server/files/etc/mongrel_cluster/app.yml
118
+ - server/files/etc/monit/app.monitrc
119
+ - server/files/etc/monit/db_primary.monitrc
120
+ - server/files/etc/monit/memcache.monitrc
121
+ - server/files/etc/monit/monitrc
122
+ - server/files/etc/monit/system.monitrc
123
+ - server/files/etc/monit/web.monitrc
124
+ - server/files/etc/motd.tail
125
+ - server/files/etc/mysql/my.cnf
126
+ - server/files/etc/postfix/main.cf
127
+ - server/files/etc/rc0.d/K10mongrel
128
+ - server/files/etc/rc1.d/K10mongrel
129
+ - server/files/etc/rc2.d/S90mongrel
130
+ - server/files/etc/rc3.d/S90mongrel
131
+ - server/files/etc/rc4.d/S90mongrel
132
+ - server/files/etc/rc5.d/S90mongrel
133
+ - server/files/etc/rc6.d/K10mongrel
134
+ - server/files/etc/rcS.d/S91ec2-first-startup
135
+ - server/files/etc/rcS.d/S92ec2-every-startup
136
+ - server/files/etc/rcS.d/S99set_roles
137
+ - server/files/etc/ssh/sshd_config
138
+ - server/files/etc/sudoers
139
+ - server/files/etc/syslog.conf
140
+ - server/files/usr/local/ec2onrails/bin/archive_file.rb
141
+ - server/files/usr/local/ec2onrails/bin/backup_app_db.rb
142
+ - server/files/usr/local/ec2onrails/bin/backup_files.rb
143
+ - server/files/usr/local/ec2onrails/bin/mongrel_start
144
+ - server/files/usr/local/ec2onrails/bin/mongrel_stop
145
+ - server/files/usr/local/ec2onrails/bin/rails_env
146
+ - server/files/usr/local/ec2onrails/bin/rebundle.sh
147
+ - server/files/usr/local/ec2onrails/bin/restore_app_db.rb
148
+ - server/files/usr/local/ec2onrails/bin/restore_files.rb
149
+ - server/files/usr/local/ec2onrails/bin/set_rails_env
150
+ - server/files/usr/local/ec2onrails/bin/set_roles.rb
151
+ - server/files/usr/local/ec2onrails/config
152
+ - server/files/usr/local/ec2onrails/COPYING
153
+ - server/files/usr/local/ec2onrails/lib/mysql_helper.rb
154
+ - server/files/usr/local/ec2onrails/lib/s3_helper.rb
155
+ - server/files/usr/local/ec2onrails/lib/utils.rb
156
+ - server/files/usr/local/ec2onrails/startup-scripts/every-startup/get-hostname.sh
157
+ - server/files/usr/local/ec2onrails/startup-scripts/first-startup/create-dirs.sh
158
+ - server/files/usr/local/ec2onrails/startup-scripts/first-startup/generate-default-web-cert-and-key.sh
159
+ - server/files/usr/local/ec2onrails/startup-scripts/first-startup/misc.sh
160
+ - server/files/usr/local/ec2onrails/startup-scripts/first-startup/prepare-mysql-data-dir.sh
161
+ - server/files/usr/local/ec2onrails/startup-scripts/first-startup/setup_credentials.sh
162
+ - server/rakefile.rb
163
+ - setup.rb
164
+ - test/autobench.conf
165
+ - test/spec/lib/s3_helper_spec.rb
166
+ - test/spec/lib/s3_old.yml
167
+ - test/spec/test_files/test1
168
+ - test/spec/test_files/test2
169
+ - test/test_app/app/controllers/application.rb
170
+ - test/test_app/app/controllers/db_fast_controller.rb
171
+ - test/test_app/app/controllers/fast_controller.rb
172
+ - test/test_app/app/controllers/slow_controller.rb
173
+ - test/test_app/app/controllers/very_slow_controller.rb
174
+ - test/test_app/app/helpers/application_helper.rb
175
+ - test/test_app/app/helpers/db_fast_helper.rb
176
+ - test/test_app/app/helpers/fast_helper.rb
177
+ - test/test_app/app/helpers/slow_helper.rb
178
+ - test/test_app/app/helpers/very_slow_helper.rb
179
+ - test/test_app/Capfile
180
+ - test/test_app/config/boot.rb
181
+ - test/test_app/config/database.yml
182
+ - test/test_app/config/deploy.rb
183
+ - test/test_app/config/environment.rb
184
+ - test/test_app/config/environments/development.rb
185
+ - test/test_app/config/environments/production.rb
186
+ - test/test_app/config/environments/test.rb
187
+ - test/test_app/config/routes.rb
188
+ - test/test_app/db/schema.rb
189
+ - test/test_app/doc/README_FOR_APP
190
+ - test/test_app/public/404.html
191
+ - test/test_app/public/500.html
192
+ - test/test_app/public/dispatch.cgi
193
+ - test/test_app/public/dispatch.fcgi
194
+ - test/test_app/public/dispatch.rb
195
+ - test/test_app/public/favicon.ico
196
+ - test/test_app/public/images/rails.png
197
+ - test/test_app/public/javascripts/application.js
198
+ - test/test_app/public/javascripts/controls.js
199
+ - test/test_app/public/javascripts/dragdrop.js
200
+ - test/test_app/public/javascripts/effects.js
201
+ - test/test_app/public/javascripts/prototype.js
202
+ - test/test_app/public/robots.txt
203
+ - test/test_app/Rakefile
204
+ - test/test_app/README
205
+ - test/test_app/script/about
206
+ - test/test_app/script/breakpointer
207
+ - test/test_app/script/console
208
+ - test/test_app/script/destroy
209
+ - test/test_app/script/generate
210
+ - test/test_app/script/performance/benchmarker
211
+ - test/test_app/script/performance/profiler
212
+ - test/test_app/script/performance/request
213
+ - test/test_app/script/plugin
214
+ - test/test_app/script/process/inspector
215
+ - test/test_app/script/process/reaper
216
+ - test/test_app/script/process/spawner
217
+ - test/test_app/script/runner
218
+ - test/test_app/script/server
219
+ - test/test_app/test/functional/db_fast_controller_test.rb
220
+ - test/test_app/test/functional/fast_controller_test.rb
221
+ - test/test_app/test/functional/slow_controller_test.rb
222
+ - test/test_app/test/functional/very_slow_controller_test.rb
223
+ - test/test_app/test/test_helper.rb
224
+ - TODO
225
+ - Manifest
226
+ - ec2onrails.gemspec
227
+ has_rdoc: true
228
+ homepage: http://ec2onrails.rubyforge.org
229
+ post_install_message:
230
+ rdoc_options:
231
+ - --line-numbers
232
+ - --inline-source
233
+ - --title
234
+ - Ec2onrails
235
+ - --main
236
+ - README.textile
237
+ require_paths:
238
+ - lib
239
+ required_ruby_version: !ruby/object:Gem::Requirement
240
+ requirements:
241
+ - - ">="
242
+ - !ruby/object:Gem::Version
243
+ version: "0"
244
+ version:
245
+ required_rubygems_version: !ruby/object:Gem::Requirement
246
+ requirements:
247
+ - - ">="
248
+ - !ruby/object:Gem::Version
249
+ version: "1.2"
250
+ version:
251
+ requirements: []
252
+
253
+ rubyforge_project: ec2onrails
254
+ rubygems_version: 1.2.0
255
+ signing_key:
256
+ specification_version: 2
257
+ summary: Client-side libraries (Capistrano tasks) for managing and deploying to EC2 on Rails servers.
258
+ test_files:
259
+ - test/test_app/test/functional/db_fast_controller_test.rb
260
+ - test/test_app/test/functional/fast_controller_test.rb
261
+ - test/test_app/test/functional/slow_controller_test.rb
262
+ - test/test_app/test/functional/very_slow_controller_test.rb
263
+ - test/test_app/test/test_helper.rb