passenger 4.0.10 → 4.0.13
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.
- data.tar.gz.asc +7 -7
- data/.gitignore +66 -0
- data/.travis.yml +2 -5
- data/CONTRIBUTORS +2 -1
- data/NEWS +24 -0
- data/README.md +5 -10
- data/bin/passenger +1 -0
- data/bin/passenger-config +29 -3
- data/bin/passenger-install-nginx-module +1 -1
- data/build/basics.rb +8 -2
- data/build/debian.rb +22 -0
- data/build/integration_tests.rb +16 -2
- data/build/misc.rb +3 -0
- data/build/packaging.rb +77 -29
- data/build/preprocessor.rb +13 -10
- data/build/test_basics.rb +6 -0
- data/debian.template/locations.ini.template +13 -0
- data/debian.template/ruby-passenger-dev.install.template +3 -0
- data/debian.template/ruby-passenger-doc.install.template +2 -0
- data/debian.template/ruby-passenger.install.template +12 -0
- data/debian.template/rules.template +1 -0
- data/dev/run_travis.sh +46 -14
- data/doc/Architectural overview.html +25 -34
- data/doc/Packaging.html +31 -23
- data/doc/Packaging.txt.md +32 -23
- data/doc/Security of user switching support.html +16 -18
- data/doc/Users guide Apache.html +231 -239
- data/doc/Users guide Nginx.html +219 -227
- data/doc/Users guide Standalone.html +12 -15
- data/doc/users_guide_snippets/installation.txt +3 -2
- data/ext/common/ApplicationPool2/Implementation.cpp +6 -16
- data/ext/common/Constants.h +1 -1
- data/ext/common/ResourceLocator.h +6 -6
- data/ext/common/UnionStation.h +11 -15
- data/ext/common/Utils/ProcessMetricsCollector.h +7 -4
- data/ext/common/agents/HelperAgent/AgentOptions.h +6 -0
- data/ext/common/agents/HelperAgent/Main.cpp +5 -0
- data/ext/common/agents/HelperAgent/RequestHandler.h +9 -1
- data/ext/common/agents/LoggingAgent/Main.cpp +4 -0
- data/ext/common/agents/Watchdog/Main.cpp +7 -0
- data/ext/nginx/config +1 -1
- data/ext/oxt/Readme.txt +15 -0
- data/helper-scripts/download_binaries/extconf.rb +83 -0
- data/lib/phusion_passenger.rb +78 -80
- data/lib/phusion_passenger/abstract_installer.rb +22 -8
- data/lib/phusion_passenger/console_text_template.rb +1 -1
- data/lib/phusion_passenger/loader_shared_helpers.rb +2 -1
- data/lib/phusion_passenger/native_support.rb +22 -9
- data/lib/phusion_passenger/packaging.rb +7 -2
- data/lib/phusion_passenger/platform_info.rb +28 -1
- data/lib/phusion_passenger/platform_info/apache.rb +246 -26
- data/lib/phusion_passenger/platform_info/apache_detector.rb +232 -0
- data/lib/phusion_passenger/platform_info/depcheck_specs/ruby.rb +4 -0
- data/lib/phusion_passenger/platform_info/linux.rb +7 -0
- data/lib/phusion_passenger/public_api.rb +11 -2
- data/lib/phusion_passenger/standalone/command.rb +11 -14
- data/lib/phusion_passenger/standalone/runtime_installer.rb +313 -275
- data/lib/phusion_passenger/standalone/runtime_locator.rb +163 -0
- data/lib/phusion_passenger/standalone/start_command.rb +38 -46
- data/lib/phusion_passenger/utils/json.rb +329 -0
- data/lib/phusion_passenger/utils/tmpio.rb +1 -0
- data/passenger.gemspec +4 -0
- data/resources/mime.types +1 -0
- data/resources/oss-binaries.phusionpassenger.com.crt +84 -0
- data/resources/release.txt +0 -0
- data/resources/templates/standalone/download_tool_missing.txt.erb +18 -0
- data/rpm/README.rdoc +117 -0
- data/rpm/config/apache-passenger.conf.in +19 -0
- data/rpm/config/nginx-passenger.conf.in +10 -0
- data/rpm/config/rubygem-passenger.te +10 -0
- data/rpm/doc/README.nginx-alternatives +5 -0
- data/rpm/doc/example_yum_repository_htaccess +5 -0
- data/rpm/doc/footer.shtml +12 -0
- data/rpm/doc/header.shtml +156 -0
- data/rpm/nginx-alternatives.spec +97 -0
- data/rpm/passenger-release.spec +91 -0
- data/rpm/passenger.spec +667 -0
- data/rpm/patches/passenger-force-native.patch +63 -0
- data/rpm/release/RPM-GPG-KEY-stealthymonkeys +33 -0
- data/rpm/release/build-release.sh +35 -0
- data/rpm/release/build.rb +301 -0
- data/rpm/release/create-mirrors.sh +16 -0
- data/rpm/release/mirrors +1 -0
- data/rpm/release/mock-repo/comps.xml +21 -0
- data/rpm/release/mock-repo/rubygem-daemon_controller-0.2.5-1.noarch.rpm +0 -0
- data/rpm/release/mock-repo/rubygem-file-tail-1.0.5-1.noarch.rpm +0 -0
- data/rpm/release/mock-repo/rubygem-spruz-0.2.2-1.noarch.rpm +0 -0
- data/rpm/release/mocksetup-first.sh +102 -0
- data/rpm/release/mocksetup.sh +67 -0
- data/test/integration_tests/apache2_tests.rb +1 -1
- data/test/integration_tests/downloaded_binaries_tests.rb +76 -0
- data/test/integration_tests/native_packaging_spec.rb +38 -6
- data/test/integration_tests/source_packaging_test.rb +198 -0
- data/test/integration_tests/standalone_tests.rb +275 -0
- data/test/ruby/admin_tools_spec.rb +1 -1
- data/test/ruby/rails4.0/loader_spec.rb +28 -0
- data/test/ruby/rails4.0/preloader_spec.rb +34 -0
- data/test/ruby/spec_helper.rb +5 -1
- data/test/ruby/standalone/runtime_installer_spec.rb +399 -0
- data/test/ruby/standalone/runtime_locator_spec.rb +214 -0
- data/test/stub/apache2/httpd.conf.erb +18 -1
- data/test/stub/rack/tmp/.gitignore +0 -0
- data/test/stub/rails2.3/log/.gitignore +1 -0
- data/test/stub/rails2.3/public/.gitignore +1 -0
- data/test/stub/rails2.3/tmp/cache/.gitignore +1 -0
- data/test/stub/rails2.3/tmp/pids/.gitignore +1 -0
- data/test/stub/rails2.3/tmp/sessions/.gitignore +1 -0
- data/test/stub/rails2.3/tmp/sockets/.gitignore +1 -0
- data/test/stub/rails3.0/.gitignore +4 -0
- data/test/stub/rails3.0/Gemfile +1 -1
- data/test/stub/rails3.0/Gemfile.lock +1 -1
- data/test/stub/rails3.0/lib/tasks/.gitkeep +0 -0
- data/test/stub/rails3.0/log/.gitignore +0 -0
- data/test/stub/rails3.0/public/stylesheets/.gitkeep +0 -0
- data/test/stub/rails3.0/vendor/plugins/.gitkeep +0 -0
- data/test/stub/rails3.1/.gitignore +15 -0
- data/test/stub/rails3.1/Gemfile +1 -1
- data/test/stub/rails3.1/Gemfile.lock +1 -1
- data/test/stub/rails3.1/app/mailers/.gitkeep +0 -0
- data/test/stub/rails3.1/app/models/.gitkeep +0 -0
- data/test/stub/rails3.1/lib/assets/.gitkeep +0 -0
- data/test/stub/rails3.1/lib/tasks/.gitkeep +0 -0
- data/test/stub/rails3.1/log/.gitkeep +0 -0
- data/test/stub/rails3.1/test/fixtures/.gitkeep +0 -0
- data/test/stub/rails3.1/test/functional/.gitkeep +0 -0
- data/test/stub/rails3.1/test/integration/.gitkeep +0 -0
- data/test/stub/rails3.1/test/unit/.gitkeep +0 -0
- data/test/stub/rails3.1/vendor/assets/stylesheets/.gitkeep +0 -0
- data/test/stub/rails3.1/vendor/plugins/.gitkeep +0 -0
- data/test/stub/rails3.2/.gitignore +15 -0
- data/test/stub/rails3.2/app/mailers/.gitkeep +0 -0
- data/test/stub/rails3.2/app/models/.gitkeep +0 -0
- data/test/stub/rails3.2/lib/assets/.gitkeep +0 -0
- data/test/stub/rails3.2/lib/tasks/.gitkeep +0 -0
- data/test/stub/rails3.2/log/.gitkeep +0 -0
- data/test/stub/rails3.2/test/fixtures/.gitkeep +0 -0
- data/test/stub/rails3.2/test/functional/.gitkeep +0 -0
- data/test/stub/rails3.2/test/integration/.gitkeep +0 -0
- data/test/stub/rails3.2/test/unit/.gitkeep +0 -0
- data/test/stub/rails3.2/vendor/assets/stylesheets/.gitkeep +0 -0
- data/test/stub/rails3.2/vendor/plugins/.gitkeep +0 -0
- data/test/stub/rails4.0/.gitignore +16 -0
- data/test/stub/rails4.0/Gemfile +45 -0
- data/test/stub/rails4.0/Gemfile.lock +126 -0
- data/test/stub/rails4.0/README.rdoc +28 -0
- data/test/stub/rails4.0/Rakefile +6 -0
- data/test/stub/rails4.0/app/assets/images/.keep +0 -0
- data/test/stub/rails4.0/app/assets/javascripts/application.js +16 -0
- data/test/stub/rails4.0/app/assets/stylesheets/application.css +13 -0
- data/test/stub/rails4.0/app/controllers/application_controller.rb +5 -0
- data/test/stub/rails4.0/app/controllers/concerns/.keep +0 -0
- data/test/stub/rails4.0/app/helpers/application_helper.rb +2 -0
- data/test/stub/rails4.0/app/mailers/.keep +0 -0
- data/test/stub/rails4.0/app/models/.keep +0 -0
- data/test/stub/rails4.0/app/models/concerns/.keep +0 -0
- data/test/stub/rails4.0/app/views/layouts/application.html.erb +14 -0
- data/test/stub/rails4.0/bin/bundle +3 -0
- data/test/stub/rails4.0/bin/rails +4 -0
- data/test/stub/rails4.0/bin/rake +4 -0
- data/test/stub/rails4.0/config.ru +4 -0
- data/test/stub/rails4.0/config/application.rb +23 -0
- data/test/stub/rails4.0/config/boot.rb +4 -0
- data/test/stub/rails4.0/config/database.yml +25 -0
- data/test/stub/rails4.0/config/environment.rb +5 -0
- data/test/stub/rails4.0/config/environments/development.rb +29 -0
- data/test/stub/rails4.0/config/environments/production.rb +80 -0
- data/test/stub/rails4.0/config/environments/test.rb +36 -0
- data/test/stub/rails4.0/config/initializers/backtrace_silencers.rb +7 -0
- data/test/stub/rails4.0/config/initializers/filter_parameter_logging.rb +4 -0
- data/test/stub/rails4.0/config/initializers/inflections.rb +16 -0
- data/test/stub/rails4.0/config/initializers/mime_types.rb +5 -0
- data/test/stub/rails4.0/config/initializers/passenger.rb +1 -0
- data/test/stub/rails4.0/config/initializers/secret_token.rb +12 -0
- data/test/stub/rails4.0/config/initializers/session_store.rb +3 -0
- data/test/stub/rails4.0/config/initializers/wrap_parameters.rb +14 -0
- data/test/stub/rails4.0/config/locales/en.yml +23 -0
- data/test/stub/rails4.0/config/routes.rb +57 -0
- data/test/stub/rails4.0/db/seeds.rb +7 -0
- data/test/stub/rails4.0/lib/assets/.keep +0 -0
- data/test/stub/rails4.0/lib/tasks/.keep +0 -0
- data/test/stub/rails4.0/log/.keep +0 -0
- data/test/stub/rails4.0/public/404.html +58 -0
- data/test/stub/rails4.0/public/422.html +58 -0
- data/test/stub/rails4.0/public/500.html +57 -0
- data/test/stub/rails4.0/public/favicon.ico +0 -0
- data/test/stub/rails4.0/public/robots.txt +5 -0
- data/test/stub/rails4.0/test/controllers/.keep +0 -0
- data/test/stub/rails4.0/test/fixtures/.keep +0 -0
- data/test/stub/rails4.0/test/helpers/.keep +0 -0
- data/test/stub/rails4.0/test/integration/.keep +0 -0
- data/test/stub/rails4.0/test/mailers/.keep +0 -0
- data/test/stub/rails4.0/test/models/.keep +0 -0
- data/test/stub/rails4.0/test/test_helper.rb +15 -0
- data/test/stub/rails4.0/vendor/assets/javascripts/.keep +0 -0
- data/test/stub/rails4.0/vendor/assets/stylesheets/.keep +0 -0
- data/test/stub/rails_apps/1.2/empty/.gitignore +3 -0
- data/test/stub/rails_apps/1.2/empty/app/models/.gitignore +0 -0
- data/test/stub/rails_apps/1.2/empty/db/.gitignore +0 -0
- data/test/stub/rails_apps/1.2/empty/public/.htaccess +40 -0
- data/test/stub/rails_apps/1.2/empty/public/stylesheets/.gitignore +0 -0
- data/test/stub/rails_apps/2.0/empty/.gitignore +3 -0
- data/test/stub/rails_apps/2.0/empty/app/models/.gitignore +0 -0
- data/test/stub/rails_apps/2.0/empty/db/.gitignore +0 -0
- data/test/stub/rails_apps/2.0/empty/public/.htaccess +40 -0
- data/test/stub/rails_apps/2.0/empty/public/stylesheets/.gitignore +0 -0
- data/test/stub/rails_apps/2.2/empty/.gitignore +3 -0
- data/test/stub/rails_apps/2.2/empty/app/models/.gitignore +0 -0
- data/test/stub/rails_apps/2.2/empty/db/.gitignore +0 -0
- data/test/stub/rails_apps/2.2/empty/public/stylesheets/.gitignore +0 -0
- data/test/stub/rails_apps/2.3/empty/.gitignore +3 -0
- data/test/stub/rails_apps/2.3/empty/app/models/.gitignore +0 -0
- data/test/stub/rails_apps/2.3/empty/db/.gitignore +0 -0
- data/test/stub/rails_apps/2.3/empty/public/stylesheets/.gitignore +0 -0
- data/test/stub/rails_apps/2.3/mycook/public/.htaccess +42 -0
- data/test/stub/rails_apps/2.3/mycook/public/uploads/.gitignore +0 -0
- data/test/stub/wsgi/tmp/.gitignore +0 -0
- data/test/valgrind-osx.supp +7 -0
- metadata +162 -8
- metadata.gz.asc +7 -7
- data/debian.template/locations.ini +0 -12
- data/debian.template/ruby-passenger-dev.install +0 -3
- data/debian.template/ruby-passenger-doc.install +0 -2
- data/debian.template/ruby-passenger.install +0 -11
- data/resources/templates/installer_common/freebsd9_broken_cxx_runtime.txt.erb +0 -19
File without changes
|
File without changes
|
@@ -0,0 +1,40 @@
|
|
1
|
+
# General Apache options
|
2
|
+
AddHandler fastcgi-script .fcgi
|
3
|
+
AddHandler cgi-script .cgi
|
4
|
+
Options +FollowSymLinks +ExecCGI
|
5
|
+
|
6
|
+
# If you don't want Rails to look in certain directories,
|
7
|
+
# use the following rewrite rules so that Apache won't rewrite certain requests
|
8
|
+
#
|
9
|
+
# Example:
|
10
|
+
# RewriteCond %{REQUEST_URI} ^/notrails.*
|
11
|
+
# RewriteRule .* - [L]
|
12
|
+
|
13
|
+
# Redirect all requests not available on the filesystem to Rails
|
14
|
+
# By default the cgi dispatcher is used which is very slow
|
15
|
+
#
|
16
|
+
# For better performance replace the dispatcher with the fastcgi one
|
17
|
+
#
|
18
|
+
# Example:
|
19
|
+
# RewriteRule ^(.*)$ dispatch.fcgi [QSA,L]
|
20
|
+
RewriteEngine On
|
21
|
+
|
22
|
+
# If your Rails application is accessed via an Alias directive,
|
23
|
+
# then you MUST also set the RewriteBase in this htaccess file.
|
24
|
+
#
|
25
|
+
# Example:
|
26
|
+
# Alias /myrailsapp /path/to/myrailsapp/public
|
27
|
+
# RewriteBase /myrailsapp
|
28
|
+
|
29
|
+
RewriteRule ^$ index.html [QSA]
|
30
|
+
RewriteRule ^([^.]+)$ $1.html [QSA]
|
31
|
+
RewriteCond %{REQUEST_FILENAME} !-f
|
32
|
+
RewriteRule ^(.*)$ dispatch.cgi [QSA,L]
|
33
|
+
|
34
|
+
# In case Rails experiences terminal errors
|
35
|
+
# Instead of displaying this message you can supply a file here which will be rendered instead
|
36
|
+
#
|
37
|
+
# Example:
|
38
|
+
# ErrorDocument 500 /500.html
|
39
|
+
|
40
|
+
ErrorDocument 500 "<h2>Application error</h2>Rails application failed to start properly"
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -0,0 +1,42 @@
|
|
1
|
+
# General Apache options
|
2
|
+
AddHandler fastcgi-script .fcgi
|
3
|
+
AddHandler cgi-script .cgi
|
4
|
+
Options +FollowSymLinks +ExecCGI
|
5
|
+
|
6
|
+
# If you don't want Rails to look in certain directories,
|
7
|
+
# use the following rewrite rules so that Apache won't rewrite certain requests
|
8
|
+
#
|
9
|
+
# Example:
|
10
|
+
# RewriteCond %{REQUEST_URI} ^/notrails.*
|
11
|
+
# RewriteRule .* - [L]
|
12
|
+
|
13
|
+
<IfModule mod_rewrite.c>
|
14
|
+
# Redirect all requests not available on the filesystem to Rails
|
15
|
+
# By default the cgi dispatcher is used which is very slow
|
16
|
+
#
|
17
|
+
# For better performance replace the dispatcher with the fastcgi one
|
18
|
+
#
|
19
|
+
# Example:
|
20
|
+
# RewriteRule ^(.*)$ dispatch.fcgi [QSA,L]
|
21
|
+
RewriteEngine On
|
22
|
+
|
23
|
+
# If your Rails application is accessed via an Alias directive,
|
24
|
+
# then you MUST also set the RewriteBase in this htaccess file.
|
25
|
+
#
|
26
|
+
# Example:
|
27
|
+
# Alias /myrailsapp /path/to/myrailsapp/public
|
28
|
+
# RewriteBase /myrailsapp
|
29
|
+
|
30
|
+
RewriteRule ^$ index.html [QSA]
|
31
|
+
#RewriteRule ^([^.]+)$ $1.html [QSA]
|
32
|
+
RewriteCond %{REQUEST_FILENAME} !-f
|
33
|
+
RewriteRule ^(.*)$ dispatch.cgi [QSA,L]
|
34
|
+
</IfModule>
|
35
|
+
|
36
|
+
# In case Rails experiences terminal errors
|
37
|
+
# Instead of displaying this message you can supply a file here which will be rendered instead
|
38
|
+
#
|
39
|
+
# Example:
|
40
|
+
# ErrorDocument 500 /500.html
|
41
|
+
|
42
|
+
ErrorDocument 500 "<h2>Application error</h2>Rails application failed to start properly"
|
File without changes
|
File without changes
|
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: 4.0.
|
4
|
+
version: 4.0.13
|
5
5
|
prerelease:
|
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-
|
12
|
+
date: 2013-08-15 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rake
|
@@ -69,9 +69,11 @@ executables:
|
|
69
69
|
- passenger-config
|
70
70
|
- passenger-status
|
71
71
|
- passenger-memory-stats
|
72
|
-
extensions:
|
72
|
+
extensions:
|
73
|
+
- helper-scripts/download_binaries/extconf.rb
|
73
74
|
extra_rdoc_files: []
|
74
75
|
files:
|
76
|
+
- .gitignore
|
75
77
|
- .travis.yml
|
76
78
|
- configure
|
77
79
|
- Rakefile
|
@@ -119,6 +121,7 @@ files:
|
|
119
121
|
- lib/phusion_passenger/native_support.rb
|
120
122
|
- lib/phusion_passenger/packaging.rb
|
121
123
|
- lib/phusion_passenger/platform_info/apache.rb
|
124
|
+
- lib/phusion_passenger/platform_info/apache_detector.rb
|
122
125
|
- lib/phusion_passenger/platform_info/binary_compatibility.rb
|
123
126
|
- lib/phusion_passenger/platform_info/compiler.rb
|
124
127
|
- lib/phusion_passenger/platform_info/curl.rb
|
@@ -152,6 +155,7 @@ files:
|
|
152
155
|
- lib/phusion_passenger/standalone/main.rb
|
153
156
|
- lib/phusion_passenger/standalone/package_runtime_command.rb
|
154
157
|
- lib/phusion_passenger/standalone/runtime_installer.rb
|
158
|
+
- lib/phusion_passenger/standalone/runtime_locator.rb
|
155
159
|
- lib/phusion_passenger/standalone/start_command.rb
|
156
160
|
- lib/phusion_passenger/standalone/status_command.rb
|
157
161
|
- lib/phusion_passenger/standalone/stop_command.rb
|
@@ -160,6 +164,7 @@ files:
|
|
160
164
|
- lib/phusion_passenger/utils/ansi_colors.rb
|
161
165
|
- lib/phusion_passenger/utils/file_system_watcher.rb
|
162
166
|
- lib/phusion_passenger/utils/hosts_file_parser.rb
|
167
|
+
- lib/phusion_passenger/utils/json.rb
|
163
168
|
- lib/phusion_passenger/utils/tee_input.rb
|
164
169
|
- lib/phusion_passenger/utils/tmpdir.rb
|
165
170
|
- lib/phusion_passenger/utils/tmpio.rb
|
@@ -262,23 +267,47 @@ files:
|
|
262
267
|
- debian.template/libapache2-mod-passenger.install
|
263
268
|
- debian.template/libapache2-mod-passenger.postinst
|
264
269
|
- debian.template/libapache2-mod-passenger.prerm
|
265
|
-
- debian.template/locations.ini
|
270
|
+
- debian.template/locations.ini.template
|
266
271
|
- debian.template/passenger.conf
|
267
272
|
- debian.template/passenger.load
|
268
273
|
- debian.template/patches/series
|
269
274
|
- debian.template/README.Debian
|
270
275
|
- debian.template/repack.sh
|
271
|
-
- debian.template/ruby-passenger-dev.install
|
272
|
-
- debian.template/ruby-passenger-doc.install
|
276
|
+
- debian.template/ruby-passenger-dev.install.template
|
277
|
+
- debian.template/ruby-passenger-doc.install.template
|
273
278
|
- debian.template/ruby-passenger.docs
|
274
|
-
- debian.template/ruby-passenger.install
|
279
|
+
- debian.template/ruby-passenger.install.template
|
275
280
|
- debian.template/ruby-passenger.manpages
|
276
281
|
- debian.template/rules.template
|
277
282
|
- debian.template/source/format
|
278
283
|
- debian.template/watch
|
284
|
+
- rpm/config/apache-passenger.conf.in
|
285
|
+
- rpm/config/nginx-passenger.conf.in
|
286
|
+
- rpm/config/rubygem-passenger.te
|
287
|
+
- rpm/doc/example_yum_repository_htaccess
|
288
|
+
- rpm/doc/footer.shtml
|
289
|
+
- rpm/doc/header.shtml
|
290
|
+
- rpm/doc/README.nginx-alternatives
|
291
|
+
- rpm/nginx-alternatives.spec
|
292
|
+
- rpm/passenger-release.spec
|
293
|
+
- rpm/passenger.spec
|
294
|
+
- rpm/patches/passenger-force-native.patch
|
295
|
+
- rpm/README.rdoc
|
296
|
+
- rpm/release/build-release.sh
|
297
|
+
- rpm/release/build.rb
|
298
|
+
- rpm/release/create-mirrors.sh
|
299
|
+
- rpm/release/mirrors
|
300
|
+
- rpm/release/mock-repo/comps.xml
|
301
|
+
- rpm/release/mock-repo/rubygem-daemon_controller-0.2.5-1.noarch.rpm
|
302
|
+
- rpm/release/mock-repo/rubygem-file-tail-1.0.5-1.noarch.rpm
|
303
|
+
- rpm/release/mock-repo/rubygem-spruz-0.2.2-1.noarch.rpm
|
304
|
+
- rpm/release/mocksetup-first.sh
|
305
|
+
- rpm/release/mocksetup.sh
|
306
|
+
- rpm/release/RPM-GPG-KEY-stealthymonkeys
|
279
307
|
- helper-scripts/backtrace-sanitizer.rb
|
280
308
|
- helper-scripts/classic-rails-loader.rb
|
281
309
|
- helper-scripts/classic-rails-preloader.rb
|
310
|
+
- helper-scripts/download_binaries/extconf.rb
|
282
311
|
- helper-scripts/node-loader.js
|
283
312
|
- helper-scripts/prespawn
|
284
313
|
- helper-scripts/rack-loader.rb
|
@@ -2202,6 +2231,7 @@ files:
|
|
2202
2231
|
- ext/oxt/tracable_exception.hpp
|
2203
2232
|
- ext/oxt/implementation.cpp
|
2204
2233
|
- ext/oxt/system_calls.cpp
|
2234
|
+
- ext/oxt/Readme.txt
|
2205
2235
|
- ext/oxt/detail/backtrace_disabled.hpp
|
2206
2236
|
- ext/oxt/detail/backtrace_enabled.hpp
|
2207
2237
|
- ext/oxt/detail/context.hpp
|
@@ -2218,6 +2248,8 @@ files:
|
|
2218
2248
|
- dev/render_error_pages.rb
|
2219
2249
|
- dev/run_travis.sh
|
2220
2250
|
- resources/mime.types
|
2251
|
+
- resources/oss-binaries.phusionpassenger.com.crt
|
2252
|
+
- resources/release.txt
|
2221
2253
|
- resources/standalone_default_root/index.html
|
2222
2254
|
- resources/templates/apache2/apache_must_be_compiled_with_compatible_mpm.txt.erb
|
2223
2255
|
- resources/templates/apache2/config_snippets.txt.erb
|
@@ -2230,7 +2262,6 @@ files:
|
|
2230
2262
|
- resources/templates/error_layout.html.template
|
2231
2263
|
- resources/templates/general_error.html.template
|
2232
2264
|
- resources/templates/general_error_with_html.html.template
|
2233
|
-
- resources/templates/installer_common/freebsd9_broken_cxx_runtime.txt.erb
|
2234
2265
|
- resources/templates/installer_common/low_amount_of_memory_warning.txt.erb
|
2235
2266
|
- resources/templates/nginx/ask_for_extra_configure_flags.txt.erb
|
2236
2267
|
- resources/templates/nginx/cannot_write_to_dir.txt.erb
|
@@ -2248,6 +2279,7 @@ files:
|
|
2248
2279
|
- resources/templates/nginx/welcome.txt.erb
|
2249
2280
|
- resources/templates/standalone/cannot_write_to_dir.txt.erb
|
2250
2281
|
- resources/templates/standalone/config.erb
|
2282
|
+
- resources/templates/standalone/download_tool_missing.txt.erb
|
2251
2283
|
- resources/templates/standalone/possible_solutions_for_download_and_extraction_problems.txt.erb
|
2252
2284
|
- resources/templates/standalone/run_installer_as_root.txt.erb
|
2253
2285
|
- resources/templates/standalone/welcome.txt.erb
|
@@ -2257,6 +2289,7 @@ files:
|
|
2257
2289
|
- test/config.json.example
|
2258
2290
|
- test/gdbinit.example
|
2259
2291
|
- test/config.json.travis
|
2292
|
+
- test/valgrind-osx.supp
|
2260
2293
|
- test/support/allocate_memory.c
|
2261
2294
|
- test/support/valgrind.h
|
2262
2295
|
- test/support/apache2_controller.rb
|
@@ -2322,23 +2355,30 @@ files:
|
|
2322
2355
|
- test/ruby/rails3.1/preloader_spec.rb
|
2323
2356
|
- test/ruby/rails3.2/loader_spec.rb
|
2324
2357
|
- test/ruby/rails3.2/preloader_spec.rb
|
2358
|
+
- test/ruby/rails4.0/loader_spec.rb
|
2359
|
+
- test/ruby/rails4.0/preloader_spec.rb
|
2325
2360
|
- test/ruby/request_handler_spec.rb
|
2326
2361
|
- test/ruby/shared/loader_sharedspec.rb
|
2327
2362
|
- test/ruby/shared/rails/analytics_logging_extensions_sharedspec.rb
|
2328
2363
|
- test/ruby/shared/ruby_loader_sharedspec.rb
|
2329
2364
|
- test/ruby/spec_helper.rb
|
2365
|
+
- test/ruby/standalone/runtime_installer_spec.rb
|
2366
|
+
- test/ruby/standalone/runtime_locator_spec.rb
|
2330
2367
|
- test/ruby/utils/file_system_watcher_spec.rb
|
2331
2368
|
- test/ruby/utils/hosts_file_parser.rb
|
2332
2369
|
- test/ruby/utils/unseekable_socket_spec.rb
|
2333
2370
|
- test/ruby/utils_spec.rb
|
2334
2371
|
- test/integration_tests/apache2_tests.rb
|
2335
2372
|
- test/integration_tests/cgi_environment_spec.rb
|
2373
|
+
- test/integration_tests/downloaded_binaries_tests.rb
|
2336
2374
|
- test/integration_tests/hello_world_rack_spec.rb
|
2337
2375
|
- test/integration_tests/hello_world_wsgi_spec.rb
|
2338
2376
|
- test/integration_tests/mycook_spec.rb
|
2339
2377
|
- test/integration_tests/native_packaging_spec.rb
|
2340
2378
|
- test/integration_tests/nginx_tests.rb
|
2379
|
+
- test/integration_tests/source_packaging_test.rb
|
2341
2380
|
- test/integration_tests/spec_helper.rb
|
2381
|
+
- test/integration_tests/standalone_tests.rb
|
2342
2382
|
- test/stub/apache2/httpd.conf.erb
|
2343
2383
|
- test/stub/apache2/mime.types
|
2344
2384
|
- test/stub/garbage1.dat
|
@@ -2490,6 +2530,43 @@ files:
|
|
2490
2530
|
- test/stub/rails3.2/script/rails
|
2491
2531
|
- test/stub/rails3.2/test/performance/browsing_test.rb
|
2492
2532
|
- test/stub/rails3.2/test/test_helper.rb
|
2533
|
+
- test/stub/rails4.0/app/assets/javascripts/application.js
|
2534
|
+
- test/stub/rails4.0/app/assets/stylesheets/application.css
|
2535
|
+
- test/stub/rails4.0/app/controllers/application_controller.rb
|
2536
|
+
- test/stub/rails4.0/app/helpers/application_helper.rb
|
2537
|
+
- test/stub/rails4.0/app/views/layouts/application.html.erb
|
2538
|
+
- test/stub/rails4.0/bin/bundle
|
2539
|
+
- test/stub/rails4.0/bin/rails
|
2540
|
+
- test/stub/rails4.0/bin/rake
|
2541
|
+
- test/stub/rails4.0/config/application.rb
|
2542
|
+
- test/stub/rails4.0/config/boot.rb
|
2543
|
+
- test/stub/rails4.0/config/database.yml
|
2544
|
+
- test/stub/rails4.0/config/environment.rb
|
2545
|
+
- test/stub/rails4.0/config/environments/development.rb
|
2546
|
+
- test/stub/rails4.0/config/environments/production.rb
|
2547
|
+
- test/stub/rails4.0/config/environments/test.rb
|
2548
|
+
- test/stub/rails4.0/config/initializers/backtrace_silencers.rb
|
2549
|
+
- test/stub/rails4.0/config/initializers/filter_parameter_logging.rb
|
2550
|
+
- test/stub/rails4.0/config/initializers/inflections.rb
|
2551
|
+
- test/stub/rails4.0/config/initializers/mime_types.rb
|
2552
|
+
- test/stub/rails4.0/config/initializers/passenger.rb
|
2553
|
+
- test/stub/rails4.0/config/initializers/secret_token.rb
|
2554
|
+
- test/stub/rails4.0/config/initializers/session_store.rb
|
2555
|
+
- test/stub/rails4.0/config/initializers/wrap_parameters.rb
|
2556
|
+
- test/stub/rails4.0/config/locales/en.yml
|
2557
|
+
- test/stub/rails4.0/config/routes.rb
|
2558
|
+
- test/stub/rails4.0/config.ru
|
2559
|
+
- test/stub/rails4.0/db/seeds.rb
|
2560
|
+
- test/stub/rails4.0/Gemfile
|
2561
|
+
- test/stub/rails4.0/Gemfile.lock
|
2562
|
+
- test/stub/rails4.0/public/404.html
|
2563
|
+
- test/stub/rails4.0/public/422.html
|
2564
|
+
- test/stub/rails4.0/public/500.html
|
2565
|
+
- test/stub/rails4.0/public/favicon.ico
|
2566
|
+
- test/stub/rails4.0/public/robots.txt
|
2567
|
+
- test/stub/rails4.0/Rakefile
|
2568
|
+
- test/stub/rails4.0/README.rdoc
|
2569
|
+
- test/stub/rails4.0/test/test_helper.rb
|
2493
2570
|
- test/stub/rails_apps/1.2/empty/app/controllers/application.rb
|
2494
2571
|
- test/stub/rails_apps/1.2/empty/app/helpers/application_helper.rb
|
2495
2572
|
- test/stub/rails_apps/1.2/empty/config/boot.rb
|
@@ -2719,6 +2796,83 @@ files:
|
|
2719
2796
|
- test/stub/zsfa/header.png
|
2720
2797
|
- test/stub/zsfa/index.html
|
2721
2798
|
- test/stub/zsfa/zsfa.png
|
2799
|
+
- test/stub/.DS_Store
|
2800
|
+
- test/stub/rack/tmp/.gitignore
|
2801
|
+
- test/stub/rails2.3/log/.gitignore
|
2802
|
+
- test/stub/rails2.3/public/.gitignore
|
2803
|
+
- test/stub/rails2.3/tmp/cache/.gitignore
|
2804
|
+
- test/stub/rails2.3/tmp/pids/.gitignore
|
2805
|
+
- test/stub/rails2.3/tmp/sessions/.gitignore
|
2806
|
+
- test/stub/rails2.3/tmp/sockets/.gitignore
|
2807
|
+
- test/stub/rails3.0/.gitignore
|
2808
|
+
- test/stub/rails3.0/lib/tasks/.gitkeep
|
2809
|
+
- test/stub/rails3.0/log/.gitignore
|
2810
|
+
- test/stub/rails3.0/public/stylesheets/.gitkeep
|
2811
|
+
- test/stub/rails3.0/tmp/cache/.gitignore
|
2812
|
+
- test/stub/rails3.0/tmp/pids/.gitignore
|
2813
|
+
- test/stub/rails3.0/vendor/plugins/.gitkeep
|
2814
|
+
- test/stub/rails3.1/.gitignore
|
2815
|
+
- test/stub/rails3.1/app/mailers/.gitkeep
|
2816
|
+
- test/stub/rails3.1/app/models/.gitkeep
|
2817
|
+
- test/stub/rails3.1/lib/assets/.gitkeep
|
2818
|
+
- test/stub/rails3.1/lib/tasks/.gitkeep
|
2819
|
+
- test/stub/rails3.1/log/.gitkeep
|
2820
|
+
- test/stub/rails3.1/test/fixtures/.gitkeep
|
2821
|
+
- test/stub/rails3.1/test/functional/.gitkeep
|
2822
|
+
- test/stub/rails3.1/test/integration/.gitkeep
|
2823
|
+
- test/stub/rails3.1/test/unit/.gitkeep
|
2824
|
+
- test/stub/rails3.1/vendor/assets/stylesheets/.gitkeep
|
2825
|
+
- test/stub/rails3.1/vendor/plugins/.gitkeep
|
2826
|
+
- test/stub/rails3.2/.gitignore
|
2827
|
+
- test/stub/rails3.2/app/mailers/.gitkeep
|
2828
|
+
- test/stub/rails3.2/app/models/.gitkeep
|
2829
|
+
- test/stub/rails3.2/lib/assets/.gitkeep
|
2830
|
+
- test/stub/rails3.2/lib/tasks/.gitkeep
|
2831
|
+
- test/stub/rails3.2/log/.gitkeep
|
2832
|
+
- test/stub/rails3.2/test/fixtures/.gitkeep
|
2833
|
+
- test/stub/rails3.2/test/functional/.gitkeep
|
2834
|
+
- test/stub/rails3.2/test/integration/.gitkeep
|
2835
|
+
- test/stub/rails3.2/test/unit/.gitkeep
|
2836
|
+
- test/stub/rails3.2/vendor/assets/stylesheets/.gitkeep
|
2837
|
+
- test/stub/rails3.2/vendor/plugins/.gitkeep
|
2838
|
+
- test/stub/rails4.0/.gitignore
|
2839
|
+
- test/stub/rails4.0/app/assets/images/.keep
|
2840
|
+
- test/stub/rails4.0/app/controllers/concerns/.keep
|
2841
|
+
- test/stub/rails4.0/app/mailers/.keep
|
2842
|
+
- test/stub/rails4.0/app/models/.keep
|
2843
|
+
- test/stub/rails4.0/app/models/concerns/.keep
|
2844
|
+
- test/stub/rails4.0/lib/assets/.keep
|
2845
|
+
- test/stub/rails4.0/lib/tasks/.keep
|
2846
|
+
- test/stub/rails4.0/log/.keep
|
2847
|
+
- test/stub/rails4.0/test/controllers/.keep
|
2848
|
+
- test/stub/rails4.0/test/fixtures/.keep
|
2849
|
+
- test/stub/rails4.0/test/helpers/.keep
|
2850
|
+
- test/stub/rails4.0/test/integration/.keep
|
2851
|
+
- test/stub/rails4.0/test/mailers/.keep
|
2852
|
+
- test/stub/rails4.0/test/models/.keep
|
2853
|
+
- test/stub/rails4.0/vendor/assets/javascripts/.keep
|
2854
|
+
- test/stub/rails4.0/vendor/assets/stylesheets/.keep
|
2855
|
+
- test/stub/rails_apps/1.2/empty/.gitignore
|
2856
|
+
- test/stub/rails_apps/1.2/empty/app/models/.gitignore
|
2857
|
+
- test/stub/rails_apps/1.2/empty/db/.gitignore
|
2858
|
+
- test/stub/rails_apps/1.2/empty/public/.htaccess
|
2859
|
+
- test/stub/rails_apps/1.2/empty/public/stylesheets/.gitignore
|
2860
|
+
- test/stub/rails_apps/2.0/empty/.gitignore
|
2861
|
+
- test/stub/rails_apps/2.0/empty/app/models/.gitignore
|
2862
|
+
- test/stub/rails_apps/2.0/empty/db/.gitignore
|
2863
|
+
- test/stub/rails_apps/2.0/empty/public/.htaccess
|
2864
|
+
- test/stub/rails_apps/2.0/empty/public/stylesheets/.gitignore
|
2865
|
+
- test/stub/rails_apps/2.2/empty/.gitignore
|
2866
|
+
- test/stub/rails_apps/2.2/empty/app/models/.gitignore
|
2867
|
+
- test/stub/rails_apps/2.2/empty/db/.gitignore
|
2868
|
+
- test/stub/rails_apps/2.2/empty/public/stylesheets/.gitignore
|
2869
|
+
- test/stub/rails_apps/2.3/empty/.gitignore
|
2870
|
+
- test/stub/rails_apps/2.3/empty/app/models/.gitignore
|
2871
|
+
- test/stub/rails_apps/2.3/empty/db/.gitignore
|
2872
|
+
- test/stub/rails_apps/2.3/empty/public/stylesheets/.gitignore
|
2873
|
+
- test/stub/rails_apps/2.3/mycook/public/.htaccess
|
2874
|
+
- test/stub/rails_apps/2.3/mycook/public/uploads/.gitignore
|
2875
|
+
- test/stub/wsgi/tmp/.gitignore
|
2722
2876
|
homepage: https://www.phusionpassenger.com/
|
2723
2877
|
licenses: []
|
2724
2878
|
post_install_message:
|
metadata.gz.asc
CHANGED
@@ -2,11 +2,11 @@
|
|
2
2
|
Version: GnuPG/MacGPG2 v2.0.17 (Darwin)
|
3
3
|
Comment: GPGTools - http://gpgtools.org
|
4
4
|
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
=
|
5
|
+
iQEcBAABAgAGBQJSDPHCAAoJECrHRaUKISqMDX8H/2MtD2WgryTYL9nhPxJ7D+1z
|
6
|
+
vUcrqf1lngkSLQmyfGDM8DagqbGWt6m1UgKMiCzYwwCQR/rt5EVK2ppkaDSOqKpr
|
7
|
+
A/maHy8wStcJj9FN6OY1P4I+SaPyANtUhvAWUB/iI9gy62m7u8pWMlxWP+qsGH8g
|
8
|
+
1U8V26frXbpnhm9is7+QrU294nfXdZNMzBaLqZ25NZ9iwwpn5pyx+uspeYFXvqIW
|
9
|
+
/lCHtjH/cQArDV9Am8mUdJC4R0Kjt8dW6uXEQDMkP2CuRFbApNDptH+DueSvASJ/
|
10
|
+
vfq9zFHRTp13ikntMbnnw5v5PJo8Lw1NXFa/eRhYD7NnAqkkZ9jkOdwwI8JSTvc=
|
11
|
+
=jbCp
|
12
12
|
-----END PGP SIGNATURE-----
|