passenger 3.9.2.beta → 4.0.0.rc4

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of passenger might be problematic. Click here for more details.

Files changed (159) hide show
  1. data/.travis.yml +3 -0
  2. data/NEWS +77 -7
  3. data/README.md +3 -11
  4. data/bin/passenger-install-apache2-module +24 -20
  5. data/bin/passenger-install-nginx-module +25 -23
  6. data/build/agents.rb +11 -0
  7. data/build/apache2.rb +9 -5
  8. data/build/basics.rb +37 -30
  9. data/build/common_library.rb +4 -1
  10. data/build/cplusplus_support.rb +5 -5
  11. data/build/cxx_tests.rb +28 -8
  12. data/build/integration_tests.rb +6 -3
  13. data/build/nginx.rb +3 -3
  14. data/build/packaging.rb +95 -57
  15. data/build/ruby_extension.rb +34 -21
  16. data/build/ruby_tests.rb +4 -2
  17. data/build/test_basics.rb +1 -1
  18. data/dev/run_travis.sh +36 -1
  19. data/doc/Users guide Apache.html +425 -308
  20. data/doc/Users guide Apache.idmap.txt +78 -70
  21. data/doc/Users guide Apache.index.sqlite3 +0 -0
  22. data/doc/Users guide Apache.txt +33 -92
  23. data/doc/Users guide Nginx.html +519 -220
  24. data/doc/Users guide Nginx.idmap.txt +78 -60
  25. data/doc/Users guide Nginx.txt +115 -26
  26. data/doc/Users guide Standalone.html +8 -2
  27. data/doc/users_guide_snippets/analysis_and_system_maintenance.txt +1 -7
  28. data/doc/users_guide_snippets/installation.txt +167 -22
  29. data/doc/users_guide_snippets/rackup_specifications.txt +4 -0
  30. data/doc/users_guide_snippets/since_version.txt +1 -0
  31. data/doc/users_guide_snippets/support_information.txt +3 -7
  32. data/doc/users_guide_snippets/tips.txt +0 -24
  33. data/ext/apache2/Configuration.cpp +11 -33
  34. data/ext/apache2/Configuration.hpp +3 -18
  35. data/ext/apache2/DirectoryMapper.h +20 -70
  36. data/ext/apache2/Hooks.cpp +2 -2
  37. data/ext/common/AgentsStarter.cpp +0 -2
  38. data/ext/common/AgentsStarter.h +0 -1
  39. data/ext/common/AgentsStarter.hpp +1 -3
  40. data/ext/common/ApplicationPool2/AppTypes.cpp +74 -0
  41. data/ext/common/ApplicationPool2/AppTypes.h +202 -0
  42. data/ext/common/ApplicationPool2/Common.h +12 -10
  43. data/ext/common/ApplicationPool2/DirectSpawner.h +256 -0
  44. data/ext/common/ApplicationPool2/DummySpawner.h +90 -0
  45. data/ext/common/ApplicationPool2/Group.h +311 -94
  46. data/ext/common/ApplicationPool2/Implementation.cpp +405 -145
  47. data/ext/common/ApplicationPool2/Options.h +24 -26
  48. data/ext/common/ApplicationPool2/PipeWatcher.h +20 -13
  49. data/ext/common/ApplicationPool2/Pool.h +326 -183
  50. data/ext/common/ApplicationPool2/Process.h +205 -55
  51. data/ext/common/ApplicationPool2/README.md +1 -1
  52. data/ext/common/ApplicationPool2/Session.h +21 -10
  53. data/ext/common/ApplicationPool2/SmartSpawner.h +801 -0
  54. data/ext/common/ApplicationPool2/Spawner.h +141 -1149
  55. data/ext/common/ApplicationPool2/SpawnerFactory.h +132 -0
  56. data/ext/common/ApplicationPool2/SuperGroup.h +146 -223
  57. data/ext/common/Constants.h +4 -2
  58. data/ext/common/Exceptions.h +23 -1
  59. data/ext/common/Logging.cpp +17 -6
  60. data/ext/common/Logging.h +37 -7
  61. data/ext/common/ResourceLocator.h +1 -1
  62. data/ext/common/Utils.cpp +49 -1
  63. data/ext/common/Utils.h +13 -4
  64. data/ext/common/{AnsiColorConstants.h → Utils/AnsiColorConstants.h} +0 -0
  65. data/ext/common/{BCrypt.cpp → Utils/BCrypt.cpp} +0 -0
  66. data/ext/common/{BCrypt.h → Utils/BCrypt.h} +0 -0
  67. data/ext/common/{Blowfish.c → Utils/Blowfish.c} +0 -0
  68. data/ext/common/{Blowfish.h → Utils/Blowfish.h} +0 -0
  69. data/ext/common/Utils/CachedFileStat.hpp +27 -25
  70. data/ext/common/Utils/Curl.h +184 -0
  71. data/ext/common/{HttpConstants.h → Utils/HttpConstants.h} +3 -0
  72. data/ext/common/Utils/IOUtils.cpp +6 -2
  73. data/ext/common/{IniFile.h → Utils/IniFile.h} +0 -0
  74. data/ext/common/Utils/LargeFiles.cpp +30 -0
  75. data/ext/common/Utils/LargeFiles.h +40 -0
  76. data/ext/common/Utils/StrIntUtils.cpp +72 -8
  77. data/ext/common/Utils/StrIntUtils.h +24 -2
  78. data/ext/common/Utils/StringMap.h +12 -2
  79. data/ext/common/Utils/VariantMap.h +51 -2
  80. data/ext/common/Utils/jsoncpp.cpp +1 -1
  81. data/ext/common/agents/Base.cpp +147 -11
  82. data/ext/common/agents/HelperAgent/AgentOptions.h +14 -6
  83. data/ext/common/agents/HelperAgent/Main.cpp +79 -19
  84. data/ext/common/agents/HelperAgent/RequestHandler.h +36 -16
  85. data/ext/common/agents/LoggingAgent/LoggingServer.h +3 -5
  86. data/ext/common/agents/LoggingAgent/Main.cpp +2 -4
  87. data/ext/common/agents/LoggingAgent/RemoteSender.h +18 -24
  88. data/ext/common/agents/SpawnPreparer.cpp +7 -0
  89. data/ext/common/agents/Watchdog/Main.cpp +96 -38
  90. data/ext/nginx/Configuration.c +26 -22
  91. data/ext/nginx/Configuration.h +4 -2
  92. data/ext/nginx/ContentHandler.c +23 -52
  93. data/ext/nginx/ContentHandler.h +5 -11
  94. data/ext/nginx/config +10 -3
  95. data/ext/nginx/ngx_http_passenger_module.c +21 -6
  96. data/ext/nginx/ngx_http_passenger_module.h +4 -1
  97. data/ext/oxt/dynamic_thread_group.hpp +9 -1
  98. data/ext/oxt/system_calls.cpp +2 -2
  99. data/ext/ruby/extconf.rb +2 -1
  100. data/helper-scripts/backtrace-sanitizer.rb +2 -0
  101. data/helper-scripts/wsgi-loader.py +54 -21
  102. data/lib/phusion_passenger.rb +5 -3
  103. data/lib/phusion_passenger/abstract_installer.rb +18 -41
  104. data/lib/phusion_passenger/admin_tools/memory_stats.rb +2 -2
  105. data/lib/phusion_passenger/admin_tools/server_instance.rb +2 -2
  106. data/lib/phusion_passenger/common_library.rb +23 -3
  107. data/lib/phusion_passenger/debug_logging.rb +10 -3
  108. data/lib/phusion_passenger/packaging.rb +1 -0
  109. data/lib/phusion_passenger/platform_info.rb +113 -115
  110. data/lib/phusion_passenger/platform_info/compiler.rb +224 -134
  111. data/lib/phusion_passenger/platform_info/cxx_portability.rb +143 -0
  112. data/lib/phusion_passenger/platform_info/depcheck.rb +371 -0
  113. data/lib/phusion_passenger/platform_info/depcheck_specs/apache2.rb +124 -0
  114. data/lib/phusion_passenger/platform_info/depcheck_specs/compiler_toolchain.rb +97 -0
  115. data/lib/phusion_passenger/platform_info/depcheck_specs/gems.rb +39 -0
  116. data/lib/phusion_passenger/platform_info/depcheck_specs/libs.rb +118 -0
  117. data/lib/phusion_passenger/platform_info/depcheck_specs/ruby.rb +137 -0
  118. data/lib/phusion_passenger/platform_info/depcheck_specs/utilities.rb +15 -0
  119. data/lib/phusion_passenger/platform_info/operating_system.rb +6 -5
  120. data/lib/phusion_passenger/platform_info/ruby.rb +45 -34
  121. data/lib/phusion_passenger/request_handler.rb +35 -22
  122. data/lib/phusion_passenger/request_handler/thread_handler.rb +5 -6
  123. data/lib/phusion_passenger/ruby_core_enhancements.rb +7 -1
  124. data/lib/phusion_passenger/standalone/runtime_installer.rb +43 -34
  125. data/lib/phusion_passenger/utils/robust_interruption.rb +34 -18
  126. data/passenger.gemspec +25 -0
  127. data/resources/templates/standalone/config.erb +3 -1
  128. data/test/config.json.travis +2 -2
  129. data/test/cxx/ApplicationPool2/DirectSpawnerTest.cpp +37 -5
  130. data/test/cxx/ApplicationPool2/PoolTest.cpp +143 -50
  131. data/test/cxx/ApplicationPool2/ProcessTest.cpp +8 -0
  132. data/test/cxx/ApplicationPool2/SmartSpawnerTest.cpp +28 -17
  133. data/test/cxx/ApplicationPool2/SpawnerTestCases.cpp +31 -26
  134. data/test/cxx/RequestHandlerTest.cpp +17 -1
  135. data/test/cxx/UtilsTest.cpp +84 -10
  136. data/test/integration_tests/apache2_tests.rb +49 -163
  137. data/test/integration_tests/hello_world_wsgi_spec.rb +2 -2
  138. data/test/integration_tests/mycook_spec.rb +1 -1
  139. data/test/integration_tests/nginx_tests.rb +37 -19
  140. data/test/ruby/request_handler_spec.rb +1 -0
  141. data/test/ruby/spec_helper.rb +52 -1
  142. data/test/stub/nginx/nginx.conf.erb +2 -0
  143. data/test/stub/rack/start.rb +5 -0
  144. data/test/stub/rails3.0/Gemfile.lock +30 -30
  145. data/test/stub/rails3.1/Gemfile +1 -1
  146. data/test/stub/rails3.1/Gemfile.lock +3 -3
  147. data/test/stub/rails3.2/Gemfile +1 -1
  148. data/test/stub/rails3.2/Gemfile.lock +4 -4
  149. data/test/stub/rails_apps/2.3/mycook/app/controllers/welcome_controller.rb +1 -1
  150. data/test/stub/rails_apps/2.3/mycook/app/helpers/recipes_helper.rb +2 -0
  151. data/test/stub/rails_apps/2.3/mycook/app/helpers/test_helper.rb +2 -0
  152. data/test/stub/rails_apps/2.3/mycook/app/helpers/uploads_helper.rb +2 -0
  153. data/test/stub/rails_apps/2.3/mycook/app/helpers/welcome_helper.rb +2 -0
  154. data/test/support/nginx_controller.rb +2 -1
  155. metadata +160 -156
  156. data/build/gempackagetask.rb +0 -99
  157. data/build/packagetask.rb +0 -186
  158. data/ext/common/StringListCreator.h +0 -83
  159. data/lib/phusion_passenger/dependencies.rb +0 -657
@@ -1,6 +1,6 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
- gem 'rails', '3.2.11'
3
+ gem 'rails', '~> 3.2.11'
4
4
 
5
5
  # Bundle edge Rails instead:
6
6
  # gem 'rails', :git => 'git://github.com/rails/rails.git'
@@ -51,13 +51,13 @@ GEM
51
51
  i18n (>= 0.4.0)
52
52
  mime-types (~> 1.16)
53
53
  treetop (~> 1.4.8)
54
- mime-types (1.19)
54
+ mime-types (1.20.1)
55
55
  multi_json (1.5.0)
56
56
  polyglot (0.3.3)
57
57
  rack (1.4.4)
58
58
  rack-cache (1.2)
59
59
  rack (>= 0.4)
60
- rack-ssl (1.3.2)
60
+ rack-ssl (1.3.3)
61
61
  rack
62
62
  rack-test (0.6.2)
63
63
  rack (>= 1.0)
@@ -90,7 +90,7 @@ GEM
90
90
  rack (~> 1.0)
91
91
  tilt (~> 1.1, != 1.3.0)
92
92
  sqlite3 (1.3.7)
93
- thor (0.16.0)
93
+ thor (0.17.0)
94
94
  tilt (1.3.3)
95
95
  treetop (1.4.12)
96
96
  polyglot
@@ -107,7 +107,7 @@ DEPENDENCIES
107
107
  coffee-rails (~> 3.2.1)
108
108
  jquery-rails
109
109
  json
110
- rails (= 3.2.11)
110
+ rails (~> 3.2.11)
111
111
  sass-rails (~> 3.2.3)
112
112
  sqlite3
113
113
  uglifier (>= 1.0.3)
@@ -18,7 +18,7 @@ class WelcomeController < ApplicationController
18
18
  end
19
19
 
20
20
  def in_passenger
21
- render :text => !!defined?(IN_PHUSION_PASSENGER)
21
+ render :text => !!defined?(PhusionPassenger)
22
22
  end
23
23
 
24
24
  def rails_env
@@ -0,0 +1,2 @@
1
+ module RecipesHelper
2
+ end
@@ -0,0 +1,2 @@
1
+ module TestHelper
2
+ end
@@ -0,0 +1,2 @@
1
+ module UploadsHelper
2
+ end
@@ -0,0 +1,2 @@
1
+ module WelcomeHelper
2
+ end
@@ -27,7 +27,7 @@ class NginxController
27
27
  @controller = DaemonController.new(
28
28
  :identifier => 'Nginx',
29
29
  :start_command => "#{CONFIG['nginx']} -c '#{@config_file}'",
30
- :ping_command => lambda { TCPSocket.new('localhost', PORT) },
30
+ :ping_command => [:tcp, '127.0.0.1', PORT],
31
31
  :pid_file => @pid_file,
32
32
  :log_file => @log_file,
33
33
  :timeout => 25,
@@ -35,6 +35,7 @@ class NginxController
35
35
  )
36
36
 
37
37
  @servers = []
38
+ @max_pool_size = 1
38
39
  end
39
40
 
40
41
  def set(options)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: passenger
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.9.2.beta
4
+ version: 4.0.0.rc4
5
5
  prerelease: 6
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-01-24 00:00:00.000000000 Z
12
+ date: 2013-03-05 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake
@@ -27,22 +27,6 @@ dependencies:
27
27
  - - ! '>='
28
28
  - !ruby/object:Gem::Version
29
29
  version: 0.8.1
30
- - !ruby/object:Gem::Dependency
31
- name: fastthread
32
- requirement: !ruby/object:Gem::Requirement
33
- none: false
34
- requirements:
35
- - - ! '>='
36
- - !ruby/object:Gem::Version
37
- version: 1.0.1
38
- type: :runtime
39
- prerelease: false
40
- version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
- requirements:
43
- - - ! '>='
44
- - !ruby/object:Gem::Version
45
- version: 1.0.1
46
30
  - !ruby/object:Gem::Dependency
47
31
  name: daemon_controller
48
32
  requirement: !ruby/object:Gem::Requirement
@@ -95,6 +79,7 @@ files:
95
79
  - LICENSE
96
80
  - INSTALL.md
97
81
  - NEWS
82
+ - passenger.gemspec
98
83
  - build/agents.rb
99
84
  - build/apache2.rb
100
85
  - build/basics.rb
@@ -102,12 +87,10 @@ files:
102
87
  - build/cplusplus_support.rb
103
88
  - build/cxx_tests.rb
104
89
  - build/documentation.rb
105
- - build/gempackagetask.rb
106
90
  - build/integration_tests.rb
107
91
  - build/misc.rb
108
92
  - build/nginx.rb
109
93
  - build/oxt_tests.rb
110
- - build/packagetask.rb
111
94
  - build/packaging.rb
112
95
  - build/rake_extensions.rb
113
96
  - build/rpm.rb
@@ -116,9 +99,9 @@ files:
116
99
  - build/test_basics.rb
117
100
  - lib/phusion_passenger.rb
118
101
  - lib/phusion_passenger/abstract_installer.rb
119
- - lib/phusion_passenger/admin_tools.rb
120
102
  - lib/phusion_passenger/admin_tools/memory_stats.rb
121
103
  - lib/phusion_passenger/admin_tools/server_instance.rb
104
+ - lib/phusion_passenger/admin_tools.rb
122
105
  - lib/phusion_passenger/analytics_logger.rb
123
106
  - lib/phusion_passenger/classic_rails/cgi_fixed.rb
124
107
  - lib/phusion_passenger/classic_rails/thread_handler_extension.rb
@@ -126,29 +109,36 @@ files:
126
109
  - lib/phusion_passenger/console_text_template.rb
127
110
  - lib/phusion_passenger/constants.rb
128
111
  - lib/phusion_passenger/debug_logging.rb
129
- - lib/phusion_passenger/dependencies.rb
130
112
  - lib/phusion_passenger/loader_shared_helpers.rb
131
113
  - lib/phusion_passenger/message_channel.rb
132
114
  - lib/phusion_passenger/message_client.rb
133
115
  - lib/phusion_passenger/native_support.rb
134
116
  - lib/phusion_passenger/packaging.rb
135
- - lib/phusion_passenger/platform_info.rb
136
117
  - lib/phusion_passenger/platform_info/apache.rb
137
118
  - lib/phusion_passenger/platform_info/binary_compatibility.rb
138
119
  - lib/phusion_passenger/platform_info/compiler.rb
139
120
  - lib/phusion_passenger/platform_info/curl.rb
121
+ - lib/phusion_passenger/platform_info/cxx_portability.rb
122
+ - lib/phusion_passenger/platform_info/depcheck.rb
123
+ - lib/phusion_passenger/platform_info/depcheck_specs/apache2.rb
124
+ - lib/phusion_passenger/platform_info/depcheck_specs/compiler_toolchain.rb
125
+ - lib/phusion_passenger/platform_info/depcheck_specs/gems.rb
126
+ - lib/phusion_passenger/platform_info/depcheck_specs/libs.rb
127
+ - lib/phusion_passenger/platform_info/depcheck_specs/ruby.rb
128
+ - lib/phusion_passenger/platform_info/depcheck_specs/utilities.rb
140
129
  - lib/phusion_passenger/platform_info/linux.rb
141
130
  - lib/phusion_passenger/platform_info/operating_system.rb
142
131
  - lib/phusion_passenger/platform_info/ruby.rb
143
132
  - lib/phusion_passenger/platform_info/zlib.rb
133
+ - lib/phusion_passenger/platform_info.rb
144
134
  - lib/phusion_passenger/plugin.rb
145
135
  - lib/phusion_passenger/preloader_shared_helpers.rb
146
136
  - lib/phusion_passenger/public_api.rb
147
137
  - lib/phusion_passenger/rack/out_of_band_gc.rb
148
138
  - lib/phusion_passenger/rack/thread_handler_extension.rb
149
139
  - lib/phusion_passenger/rails3_extensions/init.rb
150
- - lib/phusion_passenger/request_handler.rb
151
140
  - lib/phusion_passenger/request_handler/thread_handler.rb
141
+ - lib/phusion_passenger/request_handler.rb
152
142
  - lib/phusion_passenger/ruby_core_enhancements.rb
153
143
  - lib/phusion_passenger/simple_benchmarking.rb
154
144
  - lib/phusion_passenger/standalone/app_finder.rb
@@ -163,7 +153,6 @@ files:
163
153
  - lib/phusion_passenger/standalone/stop_command.rb
164
154
  - lib/phusion_passenger/standalone/utils.rb
165
155
  - lib/phusion_passenger/standalone/version_command.rb
166
- - lib/phusion_passenger/utils.rb
167
156
  - lib/phusion_passenger/utils/ansi_colors.rb
168
157
  - lib/phusion_passenger/utils/file_system_watcher.rb
169
158
  - lib/phusion_passenger/utils/hosts_file_parser.rb
@@ -172,6 +161,7 @@ files:
172
161
  - lib/phusion_passenger/utils/tmpdir.rb
173
162
  - lib/phusion_passenger/utils/tmpio.rb
174
163
  - lib/phusion_passenger/utils/unseekable_socket.rb
164
+ - lib/phusion_passenger/utils.rb
175
165
  - lib/phusion_passenger/wsgi/request_handler.py
176
166
  - bin/passenger
177
167
  - bin/passenger-config
@@ -184,26 +174,12 @@ files:
184
174
  - doc/Architectural overview.idmap.txt
185
175
  - doc/Architectural overview.txt
186
176
  - doc/DebuggingAndStressTesting.md
187
- - doc/Packaging.txt.md
188
- - doc/Security of user switching support.html
189
- - doc/Security of user switching support.idmap.txt
190
- - doc/Security of user switching support.txt
191
- - doc/Users guide Apache.html
192
- - doc/Users guide Apache.idmap.txt
193
- - doc/Users guide Apache.txt
194
- - doc/Users guide Nginx.html
195
- - doc/Users guide Nginx.idmap.txt
196
- - doc/Users guide Nginx.txt
197
- - doc/Users guide Standalone.html
198
- - doc/Users guide Standalone.idmap.txt
199
- - doc/Users guide Standalone.txt
200
177
  - doc/definitions.h
201
178
  - doc/images/by_sa.png
202
179
  - doc/images/conservative_spawning.png
203
180
  - doc/images/conservative_spawning.svg
204
181
  - doc/images/glyphicons-halflings-white.png
205
182
  - doc/images/glyphicons-halflings.png
206
- - doc/images/icons/README
207
183
  - doc/images/icons/callouts/1.png
208
184
  - doc/images/icons/callouts/10.png
209
185
  - doc/images/icons/callouts/11.png
@@ -226,6 +202,7 @@ files:
226
202
  - doc/images/icons/next.png
227
203
  - doc/images/icons/note.png
228
204
  - doc/images/icons/prev.png
205
+ - doc/images/icons/README
229
206
  - doc/images/icons/tip.png
230
207
  - doc/images/icons/up.png
231
208
  - doc/images/icons/warning.png
@@ -241,8 +218,22 @@ files:
241
218
  - doc/images/spawn_server_architecture.svg
242
219
  - doc/images/typical_isolated_web_application.png
243
220
  - doc/images/typical_isolated_web_application.svg
221
+ - doc/Packaging.txt.md
222
+ - doc/Security of user switching support.html
223
+ - doc/Security of user switching support.idmap.txt
224
+ - doc/Security of user switching support.txt
244
225
  - doc/templates/bootstrap.min.css
245
226
  - doc/templates/markdown.html.erb
227
+ - doc/Users guide Apache.html
228
+ - doc/Users guide Apache.idmap.txt
229
+ - doc/Users guide Apache.index.sqlite3
230
+ - doc/Users guide Apache.txt
231
+ - doc/Users guide Nginx.html
232
+ - doc/Users guide Nginx.idmap.txt
233
+ - doc/Users guide Nginx.txt
234
+ - doc/Users guide Standalone.html
235
+ - doc/Users guide Standalone.idmap.txt
236
+ - doc/Users guide Standalone.txt
246
237
  - doc/users_guide_snippets/analysis_and_system_maintenance.txt
247
238
  - doc/users_guide_snippets/appendix_a_about.txt
248
239
  - doc/users_guide_snippets/appendix_b_terminology.txt
@@ -252,6 +243,7 @@ files:
252
243
  - doc/users_guide_snippets/installation.txt
253
244
  - doc/users_guide_snippets/passenger_spawn_method.txt
254
245
  - doc/users_guide_snippets/rackup_specifications.txt
246
+ - doc/users_guide_snippets/since_version.txt
255
247
  - doc/users_guide_snippets/support_information.txt
256
248
  - doc/users_guide_snippets/tips.txt
257
249
  - doc/users_guide_snippets/under_the_hood/page_caching_support.txt
@@ -259,7 +251,6 @@ files:
259
251
  - man/passenger-memory-stats.8
260
252
  - man/passenger-status.8
261
253
  - man/passenger-stress-test.1
262
- - debian/README.Debian
263
254
  - debian/changelog
264
255
  - debian/compat
265
256
  - debian/control
@@ -271,6 +262,7 @@ files:
271
262
  - debian/passenger.conf
272
263
  - debian/passenger.load
273
264
  - debian/prerm
265
+ - debian/README.Debian
274
266
  - debian/rules
275
267
  - debian/watch
276
268
  - helper-scripts/backtrace-sanitizer.rb
@@ -283,32 +275,63 @@ files:
283
275
  - helper-scripts/system-memory-stats.py
284
276
  - helper-scripts/wsgi-loader.py
285
277
  - helper-scripts/wsgi-preloader.py
286
- - ext/common/Account.h
287
278
  - ext/common/AccountsDatabase.cpp
288
- - ext/common/AccountsDatabase.h
279
+ - ext/common/agents/Base.cpp
280
+ - ext/common/agents/HelperAgent/Main.cpp
281
+ - ext/common/agents/HelperAgent/RequestHandler.cpp
282
+ - ext/common/agents/LoggingAgent/FilterSupport.cpp
283
+ - ext/common/agents/LoggingAgent/Main.cpp
284
+ - ext/common/agents/SpawnPreparer.cpp
285
+ - ext/common/agents/Watchdog/Main.cpp
289
286
  - ext/common/AgentsStarter.cpp
287
+ - ext/common/ApplicationPool2/AppTypes.cpp
288
+ - ext/common/ApplicationPool2/Implementation.cpp
289
+ - ext/common/BackgroundEventLoop.cpp
290
+ - ext/common/Logging.cpp
291
+ - ext/common/MultiLibeio.cpp
292
+ - ext/common/Utils/Base64.cpp
293
+ - ext/common/Utils/BCrypt.cpp
294
+ - ext/common/Utils/CachedFileStat.cpp
295
+ - ext/common/Utils/IOUtils.cpp
296
+ - ext/common/Utils/jsoncpp.cpp
297
+ - ext/common/Utils/LargeFiles.cpp
298
+ - ext/common/Utils/MD5.cpp
299
+ - ext/common/Utils/StrIntUtils.cpp
300
+ - ext/common/Utils/SystemTime.cpp
301
+ - ext/common/Utils.cpp
302
+ - ext/common/agents/EnvPrinter.c
303
+ - ext/common/Utils/Blowfish.c
304
+ - ext/common/Utils/fib.c
305
+ - ext/common/Account.h
306
+ - ext/common/AccountsDatabase.h
307
+ - ext/common/agents/Base.h
308
+ - ext/common/agents/HelperAgent/AgentOptions.h
309
+ - ext/common/agents/HelperAgent/BacktracesServer.h
310
+ - ext/common/agents/HelperAgent/FileBackedPipe.h
311
+ - ext/common/agents/HelperAgent/RequestHandler.h
312
+ - ext/common/agents/HelperAgent/ScgiRequestParser.h
313
+ - ext/common/agents/LoggingAgent/DataStoreId.h
314
+ - ext/common/agents/LoggingAgent/FilterSupport.h
315
+ - ext/common/agents/LoggingAgent/LoggingServer.h
316
+ - ext/common/agents/LoggingAgent/RemoteSender.h
290
317
  - ext/common/AgentsStarter.h
291
- - ext/common/AgentsStarter.hpp
292
- - ext/common/AnsiColorConstants.h
318
+ - ext/common/ApplicationPool2/AppTypes.h
293
319
  - ext/common/ApplicationPool2/Common.h
294
320
  - ext/common/ApplicationPool2/ComponentInfo.h
321
+ - ext/common/ApplicationPool2/DirectSpawner.h
322
+ - ext/common/ApplicationPool2/DummySpawner.h
295
323
  - ext/common/ApplicationPool2/Group.h
296
- - ext/common/ApplicationPool2/Implementation.cpp
297
324
  - ext/common/ApplicationPool2/Options.h
298
325
  - ext/common/ApplicationPool2/PipeWatcher.h
299
326
  - ext/common/ApplicationPool2/Pool.h
300
327
  - ext/common/ApplicationPool2/Process.h
301
- - ext/common/ApplicationPool2/README.md
302
328
  - ext/common/ApplicationPool2/Session.h
329
+ - ext/common/ApplicationPool2/SmartSpawner.h
303
330
  - ext/common/ApplicationPool2/Socket.h
304
331
  - ext/common/ApplicationPool2/Spawner.h
332
+ - ext/common/ApplicationPool2/SpawnerFactory.h
305
333
  - ext/common/ApplicationPool2/SuperGroup.h
306
- - ext/common/BCrypt.cpp
307
- - ext/common/BCrypt.h
308
- - ext/common/BackgroundEventLoop.cpp
309
334
  - ext/common/BackgroundEventLoop.h
310
- - ext/common/Blowfish.c
311
- - ext/common/Blowfish.h
312
335
  - ext/common/Constants.h
313
336
  - ext/common/EventedBufferedInput.h
314
337
  - ext/common/EventedClient.h
@@ -316,102 +339,79 @@ files:
316
339
  - ext/common/EventedServer.h
317
340
  - ext/common/Exceptions.h
318
341
  - ext/common/FileDescriptor.h
319
- - ext/common/HttpConstants.h
320
- - ext/common/IniFile.h
321
- - ext/common/Logging.cpp
322
342
  - ext/common/Logging.h
323
343
  - ext/common/MessageClient.h
324
344
  - ext/common/MessageReadersWriters.h
325
345
  - ext/common/MessageServer.h
326
- - ext/common/MultiLibeio.cpp
327
346
  - ext/common/MultiLibeio.h
328
347
  - ext/common/RandomGenerator.h
329
348
  - ext/common/ResourceLocator.h
330
349
  - ext/common/SafeLibev.h
331
350
  - ext/common/ServerInstanceDir.h
332
351
  - ext/common/StaticString.h
333
- - ext/common/StringListCreator.h
334
352
  - ext/common/UnionStation.h
335
- - ext/common/Utils.cpp
336
- - ext/common/Utils.h
337
- - ext/common/Utils/Base64.cpp
353
+ - ext/common/Utils/AnsiColorConstants.h
338
354
  - ext/common/Utils/Base64.h
355
+ - ext/common/Utils/BCrypt.h
339
356
  - ext/common/Utils/BlockingQueue.h
357
+ - ext/common/Utils/Blowfish.h
340
358
  - ext/common/Utils/BufferedIO.h
341
- - ext/common/Utils/CachedFileStat.cpp
342
359
  - ext/common/Utils/CachedFileStat.h
343
- - ext/common/Utils/CachedFileStat.hpp
360
+ - ext/common/Utils/Curl.h
344
361
  - ext/common/Utils/Dechunker.h
362
+ - ext/common/Utils/fib.h
363
+ - ext/common/Utils/fibpriv.h
345
364
  - ext/common/Utils/FileChangeChecker.h
346
365
  - ext/common/Utils/HashMap.h
366
+ - ext/common/Utils/HttpConstants.h
347
367
  - ext/common/Utils/HttpHeaderBufferer.h
348
- - ext/common/Utils/IOUtils.cpp
368
+ - ext/common/Utils/IniFile.h
349
369
  - ext/common/Utils/IOUtils.h
370
+ - ext/common/Utils/json-forwards.h
371
+ - ext/common/Utils/json.h
372
+ - ext/common/Utils/LargeFiles.h
350
373
  - ext/common/Utils/Lock.h
351
- - ext/common/Utils/MD5.cpp
352
374
  - ext/common/Utils/MD5.h
353
- - ext/common/Utils/MemZeroGuard.h
354
375
  - ext/common/Utils/MemoryBarrier.h
376
+ - ext/common/Utils/MemZeroGuard.h
355
377
  - ext/common/Utils/MessageIO.h
356
378
  - ext/common/Utils/MessagePassing.h
357
379
  - ext/common/Utils/PriorityQueue.h
358
380
  - ext/common/Utils/ProcessMetricsCollector.h
359
381
  - ext/common/Utils/ScopeGuard.h
360
382
  - ext/common/Utils/SmallVector.h
361
- - ext/common/Utils/StrIntUtils.cpp
362
- - ext/common/Utils/StrIntUtils.h
363
383
  - ext/common/Utils/StreamBoyerMooreHorspool.h
364
384
  - ext/common/Utils/StringMap.h
365
- - ext/common/Utils/SystemTime.cpp
385
+ - ext/common/Utils/StrIntUtils.h
366
386
  - ext/common/Utils/SystemTime.h
367
387
  - ext/common/Utils/Template.h
368
388
  - ext/common/Utils/Timer.h
369
- - ext/common/Utils/VariantMap.h
370
- - ext/common/Utils/fib.c
371
- - ext/common/Utils/fib.h
372
- - ext/common/Utils/fibpriv.h
373
- - ext/common/Utils/json-forwards.h
374
- - ext/common/Utils/json.h
375
- - ext/common/Utils/jsoncpp.cpp
376
- - ext/common/Utils/utf8.h
377
389
  - ext/common/Utils/utf8/checked.h
378
390
  - ext/common/Utils/utf8/core.h
379
391
  - ext/common/Utils/utf8/unchecked.h
380
- - ext/common/agents/Base.cpp
381
- - ext/common/agents/Base.h
382
- - ext/common/agents/EnvPrinter.c
383
- - ext/common/agents/HelperAgent/AgentOptions.h
384
- - ext/common/agents/HelperAgent/BacktracesServer.h
385
- - ext/common/agents/HelperAgent/FileBackedPipe.h
386
- - ext/common/agents/HelperAgent/Main.cpp
387
- - ext/common/agents/HelperAgent/RequestHandler.cpp
388
- - ext/common/agents/HelperAgent/RequestHandler.h
389
- - ext/common/agents/HelperAgent/ScgiRequestParser.h
390
- - ext/common/agents/LoggingAgent/DataStoreId.h
391
- - ext/common/agents/LoggingAgent/FilterSupport.cpp
392
- - ext/common/agents/LoggingAgent/FilterSupport.h
393
- - ext/common/agents/LoggingAgent/LoggingServer.h
394
- - ext/common/agents/LoggingAgent/Main.cpp
395
- - ext/common/agents/LoggingAgent/RemoteSender.h
396
- - ext/common/agents/SpawnPreparer.cpp
397
- - ext/common/agents/Watchdog/Main.cpp
392
+ - ext/common/Utils/utf8.h
393
+ - ext/common/Utils/VariantMap.h
394
+ - ext/common/Utils.h
395
+ - ext/common/AgentsStarter.hpp
396
+ - ext/common/Utils/CachedFileStat.hpp
397
+ - ext/common/ApplicationPool2/README.md
398
398
  - ext/apache2/Bucket.cpp
399
- - ext/apache2/Bucket.h
400
399
  - ext/apache2/Configuration.cpp
400
+ - ext/apache2/Hooks.cpp
401
+ - ext/apache2/Bucket.h
401
402
  - ext/apache2/Configuration.h
402
- - ext/apache2/Configuration.hpp
403
403
  - ext/apache2/DirectoryMapper.h
404
- - ext/apache2/Hooks.cpp
405
404
  - ext/apache2/Hooks.h
405
+ - ext/apache2/Configuration.hpp
406
406
  - ext/apache2/mod_passenger.c
407
407
  - ext/nginx/Configuration.c
408
- - ext/nginx/Configuration.h
409
408
  - ext/nginx/ContentHandler.c
410
- - ext/nginx/ContentHandler.h
411
- - ext/nginx/StaticContentHandler.c
412
- - ext/nginx/StaticContentHandler.h
413
409
  - ext/nginx/ngx_http_passenger_module.c
410
+ - ext/nginx/StaticContentHandler.c
411
+ - ext/nginx/Configuration.h
412
+ - ext/nginx/ContentHandler.h
414
413
  - ext/nginx/ngx_http_passenger_module.h
414
+ - ext/nginx/StaticContentHandler.h
415
415
  - ext/nginx/config
416
416
  - ext/boost/algorithm/string/case_conv.hpp
417
417
  - ext/boost/algorithm/string/compare.hpp
@@ -437,7 +437,6 @@ files:
437
437
  - ext/boost/aligned_storage.hpp
438
438
  - ext/boost/array.hpp
439
439
  - ext/boost/assert.hpp
440
- - ext/boost/bind.hpp
441
440
  - ext/boost/bind/arg.hpp
442
441
  - ext/boost/bind/bind.hpp
443
442
  - ext/boost/bind/bind_cc.hpp
@@ -449,6 +448,7 @@ files:
449
448
  - ext/boost/bind/mem_fn_template.hpp
450
449
  - ext/boost/bind/placeholders.hpp
451
450
  - ext/boost/bind/storage.hpp
451
+ - ext/boost/bind.hpp
452
452
  - ext/boost/cerrno.hpp
453
453
  - ext/boost/checked_delete.hpp
454
454
  - ext/boost/chrono/ceil.hpp
@@ -468,7 +468,6 @@ files:
468
468
  - ext/boost/concept/detail/has_constraints.hpp
469
469
  - ext/boost/concept/usage.hpp
470
470
  - ext/boost/concept_check.hpp
471
- - ext/boost/config.hpp
472
471
  - ext/boost/config/abi/borland_prefix.hpp
473
472
  - ext/boost/config/abi/borland_suffix.hpp
474
473
  - ext/boost/config/abi/msvc_prefix.hpp
@@ -537,6 +536,7 @@ files:
537
536
  - ext/boost/config/suffix.hpp
538
537
  - ext/boost/config/user.hpp
539
538
  - ext/boost/config/warning_disable.hpp
539
+ - ext/boost/config.hpp
540
540
  - ext/boost/container/container_fwd.hpp
541
541
  - ext/boost/cstdint.hpp
542
542
  - ext/boost/current_function.hpp
@@ -652,15 +652,14 @@ files:
652
652
  - ext/boost/exception_ptr.hpp
653
653
  - ext/boost/foreach.hpp
654
654
  - ext/boost/foreach_fwd.hpp
655
- - ext/boost/function.hpp
656
655
  - ext/boost/function/detail/function_iterate.hpp
657
656
  - ext/boost/function/detail/maybe_include.hpp
658
657
  - ext/boost/function/detail/prologue.hpp
659
658
  - ext/boost/function/function_base.hpp
660
659
  - ext/boost/function/function_fwd.hpp
661
660
  - ext/boost/function/function_template.hpp
661
+ - ext/boost/function.hpp
662
662
  - ext/boost/function_equal.hpp
663
- - ext/boost/functional/hash.hpp
664
663
  - ext/boost/functional/hash/detail/container_fwd_0x.hpp
665
664
  - ext/boost/functional/hash/detail/float_functions.hpp
666
665
  - ext/boost/functional/hash/detail/hash_float.hpp
@@ -668,17 +667,17 @@ files:
668
667
  - ext/boost/functional/hash/extensions.hpp
669
668
  - ext/boost/functional/hash/hash.hpp
670
669
  - ext/boost/functional/hash/hash_fwd.hpp
670
+ - ext/boost/functional/hash.hpp
671
671
  - ext/boost/functional/hash_fwd.hpp
672
672
  - ext/boost/get_pointer.hpp
673
673
  - ext/boost/indirect_reference.hpp
674
- - ext/boost/integer.hpp
675
674
  - ext/boost/integer/static_log2.hpp
675
+ - ext/boost/integer.hpp
676
676
  - ext/boost/integer_fwd.hpp
677
677
  - ext/boost/integer_traits.hpp
678
678
  - ext/boost/io/ios_state.hpp
679
679
  - ext/boost/io_fwd.hpp
680
680
  - ext/boost/is_placeholder.hpp
681
- - ext/boost/iterator.hpp
682
681
  - ext/boost/iterator/detail/config_def.hpp
683
682
  - ext/boost/iterator/detail/config_undef.hpp
684
683
  - ext/boost/iterator/detail/enable_if.hpp
@@ -692,6 +691,7 @@ files:
692
691
  - ext/boost/iterator/iterator_traits.hpp
693
692
  - ext/boost/iterator/reverse_iterator.hpp
694
693
  - ext/boost/iterator/transform_iterator.hpp
694
+ - ext/boost/iterator.hpp
695
695
  - ext/boost/lambda/core.hpp
696
696
  - ext/boost/lambda/detail/actions.hpp
697
697
  - ext/boost/lambda/detail/arity_code.hpp
@@ -734,8 +734,6 @@ files:
734
734
  - ext/boost/mem_fn.hpp
735
735
  - ext/boost/memory_order.hpp
736
736
  - ext/boost/move/move.hpp
737
- - ext/boost/mpl/O1_size.hpp
738
- - ext/boost/mpl/O1_size_fwd.hpp
739
737
  - ext/boost/mpl/accumulate.hpp
740
738
  - ext/boost/mpl/advance.hpp
741
739
  - ext/boost/mpl/advance_fwd.hpp
@@ -752,7 +750,6 @@ files:
752
750
  - ext/boost/mpl/assert.hpp
753
751
  - ext/boost/mpl/at.hpp
754
752
  - ext/boost/mpl/at_fwd.hpp
755
- - ext/boost/mpl/aux_/O1_size_impl.hpp
756
753
  - ext/boost/mpl/aux_/adl_barrier.hpp
757
754
  - ext/boost/mpl/aux_/advance_backward.hpp
758
755
  - ext/boost/mpl/aux_/advance_forward.hpp
@@ -848,6 +845,7 @@ files:
848
845
  - ext/boost/mpl/aux_/nttp_decl.hpp
849
846
  - ext/boost/mpl/aux_/numeric_cast_utils.hpp
850
847
  - ext/boost/mpl/aux_/numeric_op.hpp
848
+ - ext/boost/mpl/aux_/O1_size_impl.hpp
851
849
  - ext/boost/mpl/aux_/order_impl.hpp
852
850
  - ext/boost/mpl/aux_/overload_names.hpp
853
851
  - ext/boost/mpl/aux_/partition_op.hpp
@@ -1387,11 +1385,11 @@ files:
1387
1385
  - ext/boost/mpl/aux_/ptr_to_ref.hpp
1388
1386
  - ext/boost/mpl/aux_/push_back_impl.hpp
1389
1387
  - ext/boost/mpl/aux_/push_front_impl.hpp
1390
- - ext/boost/mpl/aux_/range_c/O1_size.hpp
1391
1388
  - ext/boost/mpl/aux_/range_c/back.hpp
1392
1389
  - ext/boost/mpl/aux_/range_c/empty.hpp
1393
1390
  - ext/boost/mpl/aux_/range_c/front.hpp
1394
1391
  - ext/boost/mpl/aux_/range_c/iterator.hpp
1392
+ - ext/boost/mpl/aux_/range_c/O1_size.hpp
1395
1393
  - ext/boost/mpl/aux_/range_c/size.hpp
1396
1394
  - ext/boost/mpl/aux_/range_c/tag.hpp
1397
1395
  - ext/boost/mpl/aux_/reverse_fold_impl.hpp
@@ -1405,10 +1403,10 @@ files:
1405
1403
  - ext/boost/mpl/aux_/static_cast.hpp
1406
1404
  - ext/boost/mpl/aux_/template_arity.hpp
1407
1405
  - ext/boost/mpl/aux_/template_arity_fwd.hpp
1408
- - ext/boost/mpl/aux_/test.hpp
1409
1406
  - ext/boost/mpl/aux_/test/assert.hpp
1410
1407
  - ext/boost/mpl/aux_/test/data.hpp
1411
1408
  - ext/boost/mpl/aux_/test/test_case.hpp
1409
+ - ext/boost/mpl/aux_/test.hpp
1412
1410
  - ext/boost/mpl/aux_/traits_lambda_spec.hpp
1413
1411
  - ext/boost/mpl/aux_/transform_iter.hpp
1414
1412
  - ext/boost/mpl/aux_/type_wrapper.hpp
@@ -1509,8 +1507,6 @@ files:
1509
1507
  - ext/boost/mpl/limits/string.hpp
1510
1508
  - ext/boost/mpl/limits/unrolling.hpp
1511
1509
  - ext/boost/mpl/limits/vector.hpp
1512
- - ext/boost/mpl/list.hpp
1513
- - ext/boost/mpl/list/aux_/O1_size.hpp
1514
1510
  - ext/boost/mpl/list/aux_/begin_end.hpp
1515
1511
  - ext/boost/mpl/list/aux_/clear.hpp
1516
1512
  - ext/boost/mpl/list/aux_/empty.hpp
@@ -1520,6 +1516,7 @@ files:
1520
1516
  - ext/boost/mpl/list/aux_/iterator.hpp
1521
1517
  - ext/boost/mpl/list/aux_/numbered.hpp
1522
1518
  - ext/boost/mpl/list/aux_/numbered_c.hpp
1519
+ - ext/boost/mpl/list/aux_/O1_size.hpp
1523
1520
  - ext/boost/mpl/list/aux_/pop_front.hpp
1524
1521
  - ext/boost/mpl/list/aux_/preprocessed/plain/list10.hpp
1525
1522
  - ext/boost/mpl/list/aux_/preprocessed/plain/list10_c.hpp
@@ -1547,12 +1544,12 @@ files:
1547
1544
  - ext/boost/mpl/list/list40_c.hpp
1548
1545
  - ext/boost/mpl/list/list50.hpp
1549
1546
  - ext/boost/mpl/list/list50_c.hpp
1547
+ - ext/boost/mpl/list.hpp
1550
1548
  - ext/boost/mpl/list_c.hpp
1551
1549
  - ext/boost/mpl/logical.hpp
1552
1550
  - ext/boost/mpl/long.hpp
1553
1551
  - ext/boost/mpl/long_fwd.hpp
1554
1552
  - ext/boost/mpl/lower_bound.hpp
1555
- - ext/boost/mpl/map.hpp
1556
1553
  - ext/boost/mpl/map/aux_/at_impl.hpp
1557
1554
  - ext/boost/mpl/map/aux_/begin_end_impl.hpp
1558
1555
  - ext/boost/mpl/map/aux_/clear_impl.hpp
@@ -1592,6 +1589,7 @@ files:
1592
1589
  - ext/boost/mpl/map/map30.hpp
1593
1590
  - ext/boost/mpl/map/map40.hpp
1594
1591
  - ext/boost/mpl/map/map50.hpp
1592
+ - ext/boost/mpl/map.hpp
1595
1593
  - ext/boost/mpl/math/fixed_c.hpp
1596
1594
  - ext/boost/mpl/math/is_even.hpp
1597
1595
  - ext/boost/mpl/math/rational_c.hpp
@@ -1615,6 +1613,8 @@ files:
1615
1613
  - ext/boost/mpl/not.hpp
1616
1614
  - ext/boost/mpl/not_equal_to.hpp
1617
1615
  - ext/boost/mpl/numeric_cast.hpp
1616
+ - ext/boost/mpl/O1_size.hpp
1617
+ - ext/boost/mpl/O1_size_fwd.hpp
1618
1618
  - ext/boost/mpl/or.hpp
1619
1619
  - ext/boost/mpl/order.hpp
1620
1620
  - ext/boost/mpl/order_fwd.hpp
@@ -1646,7 +1646,6 @@ files:
1646
1646
  - ext/boost/mpl/same_as.hpp
1647
1647
  - ext/boost/mpl/sequence_tag.hpp
1648
1648
  - ext/boost/mpl/sequence_tag_fwd.hpp
1649
- - ext/boost/mpl/set.hpp
1650
1649
  - ext/boost/mpl/set/aux_/at_impl.hpp
1651
1650
  - ext/boost/mpl/set/aux_/begin_end_impl.hpp
1652
1651
  - ext/boost/mpl/set/aux_/clear_impl.hpp
@@ -1687,6 +1686,7 @@ files:
1687
1686
  - ext/boost/mpl/set/set40_c.hpp
1688
1687
  - ext/boost/mpl/set/set50.hpp
1689
1688
  - ext/boost/mpl/set/set50_c.hpp
1689
+ - ext/boost/mpl/set.hpp
1690
1690
  - ext/boost/mpl/set_c.hpp
1691
1691
  - ext/boost/mpl/shift_left.hpp
1692
1692
  - ext/boost/mpl/shift_right.hpp
@@ -1709,8 +1709,6 @@ files:
1709
1709
  - ext/boost/mpl/upper_bound.hpp
1710
1710
  - ext/boost/mpl/value_type.hpp
1711
1711
  - ext/boost/mpl/value_type_fwd.hpp
1712
- - ext/boost/mpl/vector.hpp
1713
- - ext/boost/mpl/vector/aux_/O1_size.hpp
1714
1712
  - ext/boost/mpl/vector/aux_/at.hpp
1715
1713
  - ext/boost/mpl/vector/aux_/back.hpp
1716
1714
  - ext/boost/mpl/vector/aux_/begin_end.hpp
@@ -1722,6 +1720,7 @@ files:
1722
1720
  - ext/boost/mpl/vector/aux_/iterator.hpp
1723
1721
  - ext/boost/mpl/vector/aux_/numbered.hpp
1724
1722
  - ext/boost/mpl/vector/aux_/numbered_c.hpp
1723
+ - ext/boost/mpl/vector/aux_/O1_size.hpp
1725
1724
  - ext/boost/mpl/vector/aux_/pop_back.hpp
1726
1725
  - ext/boost/mpl/vector/aux_/pop_front.hpp
1727
1726
  - ext/boost/mpl/vector/aux_/preprocessed/no_ctps/vector10.hpp
@@ -1771,6 +1770,7 @@ files:
1771
1770
  - ext/boost/mpl/vector/vector40_c.hpp
1772
1771
  - ext/boost/mpl/vector/vector50.hpp
1773
1772
  - ext/boost/mpl/vector/vector50_c.hpp
1773
+ - ext/boost/mpl/vector.hpp
1774
1774
  - ext/boost/mpl/vector_c.hpp
1775
1775
  - ext/boost/mpl/void.hpp
1776
1776
  - ext/boost/mpl/void_fwd.hpp
@@ -1801,9 +1801,9 @@ files:
1801
1801
  - ext/boost/numeric/conversion/sign_mixture_enum.hpp
1802
1802
  - ext/boost/numeric/conversion/udt_builtin_mixture_enum.hpp
1803
1803
  - ext/boost/operators.hpp
1804
- - ext/boost/optional.hpp
1805
1804
  - ext/boost/optional/optional.hpp
1806
1805
  - ext/boost/optional/optional_fwd.hpp
1806
+ - ext/boost/optional.hpp
1807
1807
  - ext/boost/pointee.hpp
1808
1808
  - ext/boost/preprocessor/arithmetic/add.hpp
1809
1809
  - ext/boost/preprocessor/arithmetic/dec.hpp
@@ -1978,7 +1978,6 @@ files:
1978
1978
  - ext/boost/system/config.hpp
1979
1979
  - ext/boost/system/error_code.hpp
1980
1980
  - ext/boost/system/system_error.hpp
1981
- - ext/boost/thread.hpp
1982
1981
  - ext/boost/thread/barrier.hpp
1983
1982
  - ext/boost/thread/condition.hpp
1984
1983
  - ext/boost/thread/condition_variable.hpp
@@ -2019,6 +2018,7 @@ files:
2019
2018
  - ext/boost/thread/tss.hpp
2020
2019
  - ext/boost/thread/v2/thread.hpp
2021
2020
  - ext/boost/thread/xtime.hpp
2021
+ - ext/boost/thread.hpp
2022
2022
  - ext/boost/throw_exception.hpp
2023
2023
  - ext/boost/token_functions.hpp
2024
2024
  - ext/boost/token_iterator.hpp
@@ -2127,17 +2127,17 @@ files:
2127
2127
  - ext/boost/version.hpp
2128
2128
  - ext/boost/visit_each.hpp
2129
2129
  - ext/boost/weak_ptr.hpp
2130
- - ext/libev/Changes
2131
2130
  - ext/libev/LICENSE
2131
+ - ext/libev/Changes
2132
+ - ext/libev/README
2132
2133
  - ext/libev/Makefile.am
2133
2134
  - ext/libev/Makefile.in
2134
- - ext/libev/README
2135
2135
  - ext/libev/aclocal.m4
2136
+ - ext/libev/libev.m4
2136
2137
  - ext/libev/autogen.sh
2137
2138
  - ext/libev/config.guess
2138
2139
  - ext/libev/config.h.in
2139
2140
  - ext/libev/config.sub
2140
- - ext/libev/libev.m4
2141
2141
  - ext/libev/configure
2142
2142
  - ext/libev/configure.ac
2143
2143
  - ext/libev/depcomp
@@ -2146,38 +2146,38 @@ files:
2146
2146
  - ext/libev/missing
2147
2147
  - ext/libev/mkinstalldirs
2148
2148
  - ext/libev/ev++.h
2149
- - ext/libev/ev.c
2150
2149
  - ext/libev/ev.h
2150
+ - ext/libev/ev_vars.h
2151
+ - ext/libev/ev_wrap.h
2152
+ - ext/libev/event.h
2153
+ - ext/libev/ev.c
2151
2154
  - ext/libev/ev_epoll.c
2152
2155
  - ext/libev/ev_kqueue.c
2153
2156
  - ext/libev/ev_poll.c
2154
2157
  - ext/libev/ev_port.c
2155
2158
  - ext/libev/ev_select.c
2156
- - ext/libev/ev_vars.h
2157
2159
  - ext/libev/ev_win32.c
2158
- - ext/libev/ev_wrap.h
2159
2160
  - ext/libev/event.c
2160
- - ext/libev/event.h
2161
- - ext/libeio/Changes
2162
2161
  - ext/libeio/LICENSE
2162
+ - ext/libeio/Changes
2163
2163
  - ext/libeio/Makefile.am
2164
2164
  - ext/libeio/Makefile.in
2165
2165
  - ext/libeio/aclocal.m4
2166
+ - ext/libeio/libeio.m4
2166
2167
  - ext/libeio/autogen.sh
2167
2168
  - ext/libeio/config.guess
2168
2169
  - ext/libeio/config.h.in
2169
2170
  - ext/libeio/config.sub
2170
- - ext/libeio/libeio.m4
2171
2171
  - ext/libeio/configure
2172
2172
  - ext/libeio/configure.ac
2173
2173
  - ext/libeio/install-sh
2174
2174
  - ext/libeio/ltmain.sh
2175
2175
  - ext/libeio/missing
2176
- - ext/libeio/demo.c
2177
2176
  - ext/libeio/ecb.h
2178
- - ext/libeio/eio.c
2179
2177
  - ext/libeio/eio.h
2180
2178
  - ext/libeio/xthread.h
2179
+ - ext/libeio/demo.c
2180
+ - ext/libeio/eio.c
2181
2181
  - ext/oxt/backtrace.hpp
2182
2182
  - ext/oxt/dynamic_thread_group.hpp
2183
2183
  - ext/oxt/initialize.hpp
@@ -2197,8 +2197,8 @@ files:
2197
2197
  - ext/oxt/detail/spin_lock_pthreads.hpp
2198
2198
  - ext/oxt/detail/tracable_exception_disabled.hpp
2199
2199
  - ext/oxt/detail/tracable_exception_enabled.hpp
2200
- - ext/ruby/extconf.rb
2201
2200
  - ext/ruby/passenger_native_support.c
2201
+ - ext/ruby/extconf.rb
2202
2202
  - dev/copy_boost_headers.rb
2203
2203
  - dev/find_owner_pipe_leaks.rb
2204
2204
  - dev/render_error_pages.rb
@@ -2242,12 +2242,12 @@ files:
2242
2242
  - test/gdbinit.example
2243
2243
  - test/config.json.travis
2244
2244
  - test/support/allocate_memory.c
2245
+ - test/support/valgrind.h
2245
2246
  - test/support/apache2_controller.rb
2246
2247
  - test/support/multipart.rb
2247
2248
  - test/support/nginx_controller.rb
2248
2249
  - test/support/placebo-preloader.rb
2249
2250
  - test/support/test_helper.rb
2250
- - test/support/valgrind.h
2251
2251
  - test/tut/tut.h
2252
2252
  - test/tut/tut_reporter.h
2253
2253
  - test/cxx/ApplicationPool2/DirectSpawnerTest.cpp
@@ -2281,16 +2281,16 @@ files:
2281
2281
  - test/cxx/SystemTimeTest.cpp
2282
2282
  - test/cxx/TemplateTest.cpp
2283
2283
  - test/cxx/TestSupport.cpp
2284
- - test/cxx/TestSupport.h
2285
2284
  - test/cxx/UnionStationTest.cpp
2286
2285
  - test/cxx/UtilsTest.cpp
2287
2286
  - test/cxx/VariantMapTest.cpp
2287
+ - test/cxx/TestSupport.h
2288
2288
  - test/oxt/backtrace_test.cpp
2289
- - test/oxt/counter.hpp
2290
2289
  - test/oxt/dynamic_thread_group_test.cpp
2291
2290
  - test/oxt/oxt_test_main.cpp
2292
2291
  - test/oxt/spin_lock_test.cpp
2293
2292
  - test/oxt/syscall_interruption_test.cpp
2293
+ - test/oxt/counter.hpp
2294
2294
  - test/ruby/admin_tools_spec.rb
2295
2295
  - test/ruby/analytics_logger_spec.rb
2296
2296
  - test/ruby/classic_rails/loader_spec.rb
@@ -2335,7 +2335,6 @@ files:
2335
2335
  - test/stub/rack/config.ru
2336
2336
  - test/stub/rack/public/rack.jpg
2337
2337
  - test/stub/rack/start.rb
2338
- - test/stub/rails2.3/Rakefile
2339
2338
  - test/stub/rails2.3/app/controllers/application_controller.rb
2340
2339
  - test/stub/rails2.3/app/controllers/bar_controller_1.rb
2341
2340
  - test/stub/rails2.3/app/controllers/bar_controller_2.rb
@@ -2352,6 +2351,7 @@ files:
2352
2351
  - test/stub/rails2.3/config/initializers/inflections.rb
2353
2352
  - test/stub/rails2.3/config/initializers/mime_types.rb
2354
2353
  - test/stub/rails2.3/config/routes.rb
2354
+ - test/stub/rails2.3/Rakefile
2355
2355
  - test/stub/rails2.3/script/about
2356
2356
  - test/stub/rails2.3/script/console
2357
2357
  - test/stub/rails2.3/script/dbconsole
@@ -2366,13 +2366,9 @@ files:
2366
2366
  - test/stub/rails2.3/script/process/spawner
2367
2367
  - test/stub/rails2.3/script/runner
2368
2368
  - test/stub/rails2.3/script/server
2369
- - test/stub/rails3.0/Gemfile
2370
- - test/stub/rails3.0/Gemfile.lock
2371
- - test/stub/rails3.0/Rakefile
2372
2369
  - test/stub/rails3.0/app/controllers/application_controller.rb
2373
2370
  - test/stub/rails3.0/app/helpers/application_helper.rb
2374
2371
  - test/stub/rails3.0/app/views/layouts/application.html.erb
2375
- - test/stub/rails3.0/config.ru
2376
2372
  - test/stub/rails3.0/config/application.rb
2377
2373
  - test/stub/rails3.0/config/boot.rb
2378
2374
  - test/stub/rails3.0/config/database.yml
@@ -2388,28 +2384,27 @@ files:
2388
2384
  - test/stub/rails3.0/config/initializers/session_store.rb
2389
2385
  - test/stub/rails3.0/config/locales/en.yml
2390
2386
  - test/stub/rails3.0/config/routes.rb
2387
+ - test/stub/rails3.0/config.ru
2391
2388
  - test/stub/rails3.0/db/seeds.rb
2392
2389
  - test/stub/rails3.0/doc/README_FOR_APP
2390
+ - test/stub/rails3.0/Gemfile
2391
+ - test/stub/rails3.0/Gemfile.lock
2393
2392
  - test/stub/rails3.0/public/404.html
2394
2393
  - test/stub/rails3.0/public/422.html
2395
2394
  - test/stub/rails3.0/public/500.html
2396
2395
  - test/stub/rails3.0/public/favicon.ico
2397
2396
  - test/stub/rails3.0/public/index.html
2398
2397
  - test/stub/rails3.0/public/robots.txt
2398
+ - test/stub/rails3.0/Rakefile
2399
2399
  - test/stub/rails3.0/script/rails
2400
2400
  - test/stub/rails3.0/test/performance/browsing_test.rb
2401
2401
  - test/stub/rails3.0/test/test_helper.rb
2402
- - test/stub/rails3.1/Gemfile
2403
- - test/stub/rails3.1/Gemfile.lock
2404
- - test/stub/rails3.1/README
2405
- - test/stub/rails3.1/Rakefile
2406
2402
  - test/stub/rails3.1/app/assets/images/rails.png
2407
2403
  - test/stub/rails3.1/app/assets/javascripts/application.js
2408
2404
  - test/stub/rails3.1/app/assets/stylesheets/application.css
2409
2405
  - test/stub/rails3.1/app/controllers/application_controller.rb
2410
2406
  - test/stub/rails3.1/app/helpers/application_helper.rb
2411
2407
  - test/stub/rails3.1/app/views/layouts/application.html.erb
2412
- - test/stub/rails3.1/config.ru
2413
2408
  - test/stub/rails3.1/config/application.rb
2414
2409
  - test/stub/rails3.1/config/boot.rb
2415
2410
  - test/stub/rails3.1/config/database.yml
@@ -2426,27 +2421,28 @@ files:
2426
2421
  - test/stub/rails3.1/config/initializers/wrap_parameters.rb
2427
2422
  - test/stub/rails3.1/config/locales/en.yml
2428
2423
  - test/stub/rails3.1/config/routes.rb
2424
+ - test/stub/rails3.1/config.ru
2429
2425
  - test/stub/rails3.1/db/seeds.rb
2430
2426
  - test/stub/rails3.1/doc/README_FOR_APP
2427
+ - test/stub/rails3.1/Gemfile
2428
+ - test/stub/rails3.1/Gemfile.lock
2431
2429
  - test/stub/rails3.1/public/404.html
2432
2430
  - test/stub/rails3.1/public/422.html
2433
2431
  - test/stub/rails3.1/public/500.html
2434
2432
  - test/stub/rails3.1/public/favicon.ico
2435
2433
  - test/stub/rails3.1/public/index.html
2436
2434
  - test/stub/rails3.1/public/robots.txt
2435
+ - test/stub/rails3.1/Rakefile
2436
+ - test/stub/rails3.1/README
2437
2437
  - test/stub/rails3.1/script/rails
2438
2438
  - test/stub/rails3.1/test/performance/browsing_test.rb
2439
2439
  - test/stub/rails3.1/test/test_helper.rb
2440
- - test/stub/rails3.2/Gemfile
2441
- - test/stub/rails3.2/Gemfile.lock
2442
- - test/stub/rails3.2/Rakefile
2443
2440
  - test/stub/rails3.2/app/assets/images/rails.png
2444
2441
  - test/stub/rails3.2/app/assets/javascripts/application.js
2445
2442
  - test/stub/rails3.2/app/assets/stylesheets/application.css
2446
2443
  - test/stub/rails3.2/app/controllers/application_controller.rb
2447
2444
  - test/stub/rails3.2/app/helpers/application_helper.rb
2448
2445
  - test/stub/rails3.2/app/views/layouts/application.html.erb
2449
- - test/stub/rails3.2/config.ru
2450
2446
  - test/stub/rails3.2/config/application.rb
2451
2447
  - test/stub/rails3.2/config/boot.rb
2452
2448
  - test/stub/rails3.2/config/database.yml
@@ -2463,18 +2459,21 @@ files:
2463
2459
  - test/stub/rails3.2/config/initializers/wrap_parameters.rb
2464
2460
  - test/stub/rails3.2/config/locales/en.yml
2465
2461
  - test/stub/rails3.2/config/routes.rb
2462
+ - test/stub/rails3.2/config.ru
2466
2463
  - test/stub/rails3.2/db/seeds.rb
2467
2464
  - test/stub/rails3.2/doc/README_FOR_APP
2465
+ - test/stub/rails3.2/Gemfile
2466
+ - test/stub/rails3.2/Gemfile.lock
2468
2467
  - test/stub/rails3.2/public/404.html
2469
2468
  - test/stub/rails3.2/public/422.html
2470
2469
  - test/stub/rails3.2/public/500.html
2471
2470
  - test/stub/rails3.2/public/favicon.ico
2472
2471
  - test/stub/rails3.2/public/index.html
2473
2472
  - test/stub/rails3.2/public/robots.txt
2473
+ - test/stub/rails3.2/Rakefile
2474
2474
  - test/stub/rails3.2/script/rails
2475
2475
  - test/stub/rails3.2/test/performance/browsing_test.rb
2476
2476
  - test/stub/rails3.2/test/test_helper.rb
2477
- - test/stub/rails_apps/1.2/empty/Rakefile
2478
2477
  - test/stub/rails_apps/1.2/empty/app/controllers/application.rb
2479
2478
  - test/stub/rails_apps/1.2/empty/app/helpers/application_helper.rb
2480
2479
  - test/stub/rails_apps/1.2/empty/config/boot.rb
@@ -2494,6 +2493,7 @@ files:
2494
2493
  - test/stub/rails_apps/1.2/empty/public/favicon.ico
2495
2494
  - test/stub/rails_apps/1.2/empty/public/images/rails.png
2496
2495
  - test/stub/rails_apps/1.2/empty/public/robots.txt
2496
+ - test/stub/rails_apps/1.2/empty/Rakefile
2497
2497
  - test/stub/rails_apps/1.2/empty/script/about
2498
2498
  - test/stub/rails_apps/1.2/empty/script/breakpointer
2499
2499
  - test/stub/rails_apps/1.2/empty/script/console
@@ -2508,7 +2508,6 @@ files:
2508
2508
  - test/stub/rails_apps/1.2/empty/script/runner
2509
2509
  - test/stub/rails_apps/1.2/empty/script/server
2510
2510
  - test/stub/rails_apps/1.2/empty/test/test_helper.rb
2511
- - test/stub/rails_apps/2.0/empty/Rakefile
2512
2511
  - test/stub/rails_apps/2.0/empty/app/controllers/application.rb
2513
2512
  - test/stub/rails_apps/2.0/empty/app/helpers/application_helper.rb
2514
2513
  - test/stub/rails_apps/2.0/empty/config/boot.rb
@@ -2531,6 +2530,7 @@ files:
2531
2530
  - test/stub/rails_apps/2.0/empty/public/favicon.ico
2532
2531
  - test/stub/rails_apps/2.0/empty/public/images/rails.png
2533
2532
  - test/stub/rails_apps/2.0/empty/public/robots.txt
2533
+ - test/stub/rails_apps/2.0/empty/Rakefile
2534
2534
  - test/stub/rails_apps/2.0/empty/script/about
2535
2535
  - test/stub/rails_apps/2.0/empty/script/console
2536
2536
  - test/stub/rails_apps/2.0/empty/script/destroy
@@ -2545,7 +2545,6 @@ files:
2545
2545
  - test/stub/rails_apps/2.0/empty/script/runner
2546
2546
  - test/stub/rails_apps/2.0/empty/script/server
2547
2547
  - test/stub/rails_apps/2.0/empty/test/test_helper.rb
2548
- - test/stub/rails_apps/2.2/empty/Rakefile
2549
2548
  - test/stub/rails_apps/2.2/empty/app/controllers/application.rb
2550
2549
  - test/stub/rails_apps/2.2/empty/app/helpers/application_helper.rb
2551
2550
  - test/stub/rails_apps/2.2/empty/config/boot.rb
@@ -2570,6 +2569,7 @@ files:
2570
2569
  - test/stub/rails_apps/2.2/empty/public/favicon.ico
2571
2570
  - test/stub/rails_apps/2.2/empty/public/images/rails.png
2572
2571
  - test/stub/rails_apps/2.2/empty/public/robots.txt
2572
+ - test/stub/rails_apps/2.2/empty/Rakefile
2573
2573
  - test/stub/rails_apps/2.2/empty/script/about
2574
2574
  - test/stub/rails_apps/2.2/empty/script/console
2575
2575
  - test/stub/rails_apps/2.2/empty/script/dbconsole
@@ -2586,7 +2586,6 @@ files:
2586
2586
  - test/stub/rails_apps/2.2/empty/script/server
2587
2587
  - test/stub/rails_apps/2.2/empty/test/performance/browsing_test.rb
2588
2588
  - test/stub/rails_apps/2.2/empty/test/test_helper.rb
2589
- - test/stub/rails_apps/2.3/empty/Rakefile
2590
2589
  - test/stub/rails_apps/2.3/empty/app/controllers/application_controller.rb
2591
2590
  - test/stub/rails_apps/2.3/empty/app/helpers/application_helper.rb
2592
2591
  - test/stub/rails_apps/2.3/empty/config/boot.rb
@@ -2611,6 +2610,7 @@ files:
2611
2610
  - test/stub/rails_apps/2.3/empty/public/favicon.ico
2612
2611
  - test/stub/rails_apps/2.3/empty/public/images/rails.png
2613
2612
  - test/stub/rails_apps/2.3/empty/public/robots.txt
2613
+ - test/stub/rails_apps/2.3/empty/Rakefile
2614
2614
  - test/stub/rails_apps/2.3/empty/script/about
2615
2615
  - test/stub/rails_apps/2.3/empty/script/console
2616
2616
  - test/stub/rails_apps/2.3/empty/script/dbconsole
@@ -2623,12 +2623,15 @@ files:
2623
2623
  - test/stub/rails_apps/2.3/empty/script/server
2624
2624
  - test/stub/rails_apps/2.3/empty/test/performance/browsing_test.rb
2625
2625
  - test/stub/rails_apps/2.3/empty/test/test_helper.rb
2626
- - test/stub/rails_apps/2.3/mycook/Rakefile
2627
2626
  - test/stub/rails_apps/2.3/mycook/app/controllers/application_controller.rb
2628
2627
  - test/stub/rails_apps/2.3/mycook/app/controllers/recipes_controller.rb
2629
2628
  - test/stub/rails_apps/2.3/mycook/app/controllers/uploads_controller.rb
2630
2629
  - test/stub/rails_apps/2.3/mycook/app/controllers/welcome_controller.rb
2631
2630
  - test/stub/rails_apps/2.3/mycook/app/helpers/application_helper.rb
2631
+ - test/stub/rails_apps/2.3/mycook/app/helpers/recipes_helper.rb
2632
+ - test/stub/rails_apps/2.3/mycook/app/helpers/test_helper.rb
2633
+ - test/stub/rails_apps/2.3/mycook/app/helpers/uploads_helper.rb
2634
+ - test/stub/rails_apps/2.3/mycook/app/helpers/welcome_helper.rb
2632
2635
  - test/stub/rails_apps/2.3/mycook/app/views/layouts/default.rhtml
2633
2636
  - test/stub/rails_apps/2.3/mycook/app/views/recipes/create.rhtml
2634
2637
  - test/stub/rails_apps/2.3/mycook/app/views/recipes/index.rhtml
@@ -2665,6 +2668,7 @@ files:
2665
2668
  - test/stub/rails_apps/2.3/mycook/public/robots.txt
2666
2669
  - test/stub/rails_apps/2.3/mycook/public/uploads.html
2667
2670
  - test/stub/rails_apps/2.3/mycook/public/welcome/cached.html
2671
+ - test/stub/rails_apps/2.3/mycook/Rakefile
2668
2672
  - test/stub/rails_apps/2.3/mycook/script/about
2669
2673
  - test/stub/rails_apps/2.3/mycook/script/console
2670
2674
  - test/stub/rails_apps/2.3/mycook/script/dbconsole
@@ -2687,18 +2691,18 @@ files:
2687
2691
  - test/stub/rails_apps/2.3/mycook/tmp/sockets/useless.txt
2688
2692
  - test/stub/start_error.pl
2689
2693
  - test/stub/upload_data.txt
2690
- - test/stub/vendor_rails/minimal/README
2691
2694
  - test/stub/vendor_rails/minimal/actionmailer/lib/action_mailer.rb
2692
2695
  - test/stub/vendor_rails/minimal/actionpack/lib/action_controller.rb
2693
2696
  - test/stub/vendor_rails/minimal/actionpack/lib/action_pack.rb
2694
2697
  - test/stub/vendor_rails/minimal/actionpack/lib/action_view.rb
2695
2698
  - test/stub/vendor_rails/minimal/activerecord/lib/active_record.rb
2696
2699
  - test/stub/vendor_rails/minimal/activeresource/lib/active_resource.rb
2697
- - test/stub/vendor_rails/minimal/activesupport/lib/active_support.rb
2698
2700
  - test/stub/vendor_rails/minimal/activesupport/lib/active_support/whiny_nil.rb
2701
+ - test/stub/vendor_rails/minimal/activesupport/lib/active_support.rb
2699
2702
  - test/stub/vendor_rails/minimal/railties/lib/dispatcher.rb
2700
2703
  - test/stub/vendor_rails/minimal/railties/lib/initializer.rb
2701
2704
  - test/stub/vendor_rails/minimal/railties/lib/ruby_version_check.rb
2705
+ - test/stub/vendor_rails/minimal/README
2702
2706
  - test/stub/wsgi/passenger_wsgi.py
2703
2707
  - test/stub/wsgi/public/wsgi-snake.jpg
2704
2708
  - test/stub/zsfa/header.png
@@ -2724,7 +2728,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
2724
2728
  version: 1.3.1
2725
2729
  requirements: []
2726
2730
  rubyforge_project: passenger
2727
- rubygems_version: 1.8.24
2731
+ rubygems_version: 1.8.25
2728
2732
  signing_key:
2729
2733
  specification_version: 3
2730
2734
  summary: Easy and robust Ruby web application deployment