passenger 5.0.4 → 5.0.5
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.
- checksums.yaml +8 -8
- checksums.yaml.gz.asc +7 -7
- data.tar.gz.asc +7 -7
- data/.editorconfig +10 -0
- data/CHANGELOG +21 -0
- data/build/agents.rb +2 -2
- data/build/apache2.rb +6 -5
- data/build/common_library.rb +22 -7
- data/build/cxx_tests.rb +0 -3
- data/build/misc.rb +1 -1
- data/dev/parse_file_descriptor_log +119 -0
- data/doc/CloudLicensingConfiguration.html +387 -0
- data/doc/Design and Architecture.html +2430 -0
- data/doc/Packaging.html +488 -0
- data/doc/Security of user switching support.html +1833 -0
- data/doc/ServerOptimizationGuide.html +659 -0
- data/doc/ServerOptimizationGuide.txt.md +8 -0
- data/doc/Users guide Apache.html +9116 -0
- data/doc/Users guide Apache.idmap.txt +6 -2
- data/doc/Users guide Apache.txt +26 -7
- data/doc/Users guide Nginx.html +9025 -0
- data/doc/Users guide Nginx.idmap.txt +7 -3
- data/doc/Users guide Nginx.txt +29 -6
- data/doc/Users guide Standalone.html +3983 -0
- data/doc/Users guide.html +1748 -0
- data/doc/users_guide_snippets/installation.txt +4 -4
- data/ext/apache2/Configuration.cpp +16 -5
- data/ext/apache2/Configuration.hpp +4 -2
- data/ext/apache2/Hooks.cpp +44 -19
- data/ext/boost/libs/thread/src/pthread/once.cpp +2 -0
- data/ext/boost/libs/thread/src/pthread/once_atomic.cpp +6 -0
- data/ext/common/AgentsStarter.h +3 -2
- data/ext/common/ApplicationPool2/DirectSpawner.h +14 -4
- data/ext/common/ApplicationPool2/DummySpawner.h +12 -7
- data/ext/common/ApplicationPool2/Implementation.cpp +1 -1
- data/ext/common/ApplicationPool2/Process.h +2 -1
- data/ext/common/ApplicationPool2/Session.h +6 -6
- data/ext/common/ApplicationPool2/SmartSpawner.h +19 -4
- data/ext/common/ApplicationPool2/Socket.h +59 -27
- data/ext/common/ApplicationPool2/Spawner.h +2 -2
- data/ext/common/BackgroundEventLoop.cpp +6 -1
- data/ext/common/Constants.h +1 -1
- data/ext/common/EventedClient.h +1 -1
- data/ext/common/EventedServer.h +2 -2
- data/ext/common/FileDescriptor.h +25 -6
- data/ext/common/Logging.cpp +107 -52
- data/ext/common/Logging.h +146 -19
- data/ext/common/MessageClient.h +2 -2
- data/ext/common/MessageServer.h +3 -2
- data/ext/common/RandomGenerator.h +8 -7
- data/ext/common/SafeLibev.h +5 -1
- data/ext/common/ServerKit/AcceptLoadBalancer.h +9 -4
- data/ext/common/ServerKit/FdSinkChannel.h +5 -2
- data/ext/common/ServerKit/FdSourceChannel.h +5 -2
- data/ext/common/ServerKit/FileBufferedChannel.h +2 -0
- data/ext/common/ServerKit/FileBufferedFdSinkChannel.h +7 -2
- data/ext/common/ServerKit/HttpServer.h +6 -0
- data/ext/common/ServerKit/Server.h +40 -3
- data/ext/common/StaticString.h +20 -0
- data/ext/common/UnionStation/Connection.h +3 -1
- data/ext/common/UnionStation/Core.h +6 -4
- data/ext/common/Utils.cpp +4 -3
- data/ext/common/Utils/DateParsing.h +19 -5
- data/ext/common/Utils/FastStringStream.h +183 -0
- data/ext/common/Utils/IOUtils.cpp +47 -28
- data/ext/common/Utils/IOUtils.h +56 -12
- data/ext/common/Utils/MessagePassing.h +3 -3
- data/ext/common/Utils/ProcessMetricsCollector.h +2 -2
- data/ext/common/Utils/ScopeGuard.h +16 -5
- data/ext/common/Utils/SpeedMeter.h +2 -2
- data/ext/common/Utils/StrIntUtils.cpp +6 -6
- data/ext/common/Utils/StrIntUtils.h +2 -1
- data/ext/common/agents/Base.cpp +56 -4
- data/ext/common/agents/Base.h +2 -1
- data/ext/common/agents/HelperAgent/AdminServer.h +122 -11
- data/ext/common/agents/HelperAgent/Main.cpp +16 -5
- data/ext/common/agents/HelperAgent/OptionParser.h +7 -1
- data/ext/common/agents/HelperAgent/RequestHandler.h +1 -1
- data/ext/common/agents/HelperAgent/RequestHandler/Hooks.cpp +10 -1
- data/ext/common/agents/HelperAgent/RequestHandler/Request.h +8 -0
- data/ext/common/agents/HelperAgent/RequestHandler/TurboCaching.h +4 -3
- data/ext/common/agents/LoggingAgent/AdminServer.h +57 -11
- data/ext/common/agents/LoggingAgent/LoggingServer.h +3 -3
- data/ext/common/agents/LoggingAgent/Main.cpp +11 -3
- data/ext/common/agents/Watchdog/AdminServer.h +53 -11
- data/ext/common/agents/Watchdog/AgentWatcher.cpp +3 -3
- data/ext/common/agents/Watchdog/Main.cpp +13 -6
- data/ext/libeio/ecb.h +1 -1
- data/ext/libev/ev.c +13 -1
- data/ext/libev/ev.h +3 -0
- data/ext/nginx/Configuration.c +28 -6
- data/ext/nginx/Configuration.h +2 -1
- data/ext/nginx/ngx_http_passenger_module.c +5 -4
- data/ext/oxt/dynamic_thread_group.hpp +38 -5
- data/lib/phusion_passenger.rb +1 -1
- data/lib/phusion_passenger/common_library.rb +9 -5
- data/lib/phusion_passenger/config/reopen_logs_command.rb +2 -2
- data/lib/phusion_passenger/packaging.rb +23 -37
- data/passenger.gemspec +21 -21
- metadata +4 -453
- metadata.gz.asc +7 -7
- data/.gitignore +0 -68
- data/.travis.yml +0 -16
- data/Gemfile +0 -17
- data/Gemfile.lock +0 -39
- data/Vagrantfile +0 -54
- data/debian.template/README.Debian +0 -15
- data/debian.template/changelog +0 -316
- data/debian.template/compat +0 -1
- data/debian.template/control.erb +0 -91
- data/debian.template/copyright +0 -385
- data/debian.template/libapache2-mod-passenger.install +0 -3
- data/debian.template/libapache2-mod-passenger.postinst +0 -36
- data/debian.template/libapache2-mod-passenger.prerm +0 -15
- data/debian.template/locations.ini.erb +0 -14
- data/debian.template/passenger-dev.install.erb +0 -3
- data/debian.template/passenger-doc.install.erb +0 -2
- data/debian.template/passenger.conf +0 -6
- data/debian.template/passenger.docs +0 -4
- data/debian.template/passenger.install.erb +0 -14
- data/debian.template/passenger.load +0 -3
- data/debian.template/passenger.manpages +0 -3
- data/debian.template/patches/series +0 -0
- data/debian.template/rules.erb +0 -76
- data/debian.template/source/format +0 -1
- data/ext/common/EventedBufferedInput.h +0 -458
- data/packaging/rpm/LICENSE.txt +0 -19
- data/packaging/rpm/Makefile +0 -13
- data/packaging/rpm/README.md +0 -41
- data/packaging/rpm/Vagrantfile +0 -38
- data/packaging/rpm/Vagrantfile.centos +0 -30
- data/packaging/rpm/build +0 -170
- data/packaging/rpm/create_project +0 -41
- data/packaging/rpm/git_update +0 -88
- data/packaging/rpm/image/Dockerfile +0 -37
- data/packaging/rpm/image/Gemfile +0 -3
- data/packaging/rpm/image/Gemfile.lock +0 -12
- data/packaging/rpm/image/RPM-GPG-KEY-amazon-ga +0 -19
- data/packaging/rpm/image/amazon2014-i386.cfg +0 -96
- data/packaging/rpm/image/amazon2014-x86_64.cfg +0 -96
- data/packaging/rpm/image/site-defaults.cfg +0 -168
- data/packaging/rpm/internal/build_tasks.rb +0 -238
- data/packaging/rpm/internal/dummygpg +0 -11
- data/packaging/rpm/internal/exec_build +0 -42
- data/packaging/rpm/internal/get_distro_arch +0 -14
- data/packaging/rpm/internal/get_distro_id +0 -10
- data/packaging/rpm/internal/git_update +0 -27
- data/packaging/rpm/internal/inituidgid +0 -17
- data/packaging/rpm/internal/my_init +0 -344
- data/packaging/rpm/internal/python27 +0 -3
- data/packaging/rpm/internal/repo_update +0 -46
- data/packaging/rpm/internal/setuser +0 -26
- data/packaging/rpm/internal/tracking_helper +0 -40
- data/packaging/rpm/jenkins_release +0 -99
- data/packaging/rpm/lib/build_tasks_support.rb +0 -402
- data/packaging/rpm/lib/preprocessor.rb +0 -341
- data/packaging/rpm/nginx_spec/404.html +0 -119
- data/packaging/rpm/nginx_spec/50x.html +0 -119
- data/packaging/rpm/nginx_spec/index.html +0 -116
- data/packaging/rpm/nginx_spec/nginx-auto-cc-gcc.patch +0 -13
- data/packaging/rpm/nginx_spec/nginx-logo.png +0 -0
- data/packaging/rpm/nginx_spec/nginx-upgrade +0 -13
- data/packaging/rpm/nginx_spec/nginx-upgrade.8 +0 -151
- data/packaging/rpm/nginx_spec/nginx.conf +0 -131
- data/packaging/rpm/nginx_spec/nginx.init +0 -144
- data/packaging/rpm/nginx_spec/nginx.logrotate +0 -13
- data/packaging/rpm/nginx_spec/nginx.service +0 -15
- data/packaging/rpm/nginx_spec/nginx.spec.template +0 -560
- data/packaging/rpm/nginx_spec/nginx.sysconfig +0 -4
- data/packaging/rpm/nginx_spec/passenger.conf +0 -9
- data/packaging/rpm/nginx_spec/poweredby.png +0 -0
- data/packaging/rpm/passenger_spec/apache-passenger.conf.in +0 -26
- data/packaging/rpm/passenger_spec/config.json +0 -30
- data/packaging/rpm/passenger_spec/passenger.logrotate +0 -7
- data/packaging/rpm/passenger_spec/passenger.spec.template +0 -478
- data/packaging/rpm/passenger_spec/passenger_dynamic_thread_group.patch +0 -16
- data/packaging/rpm/passenger_spec/passenger_tests_default_config_example.patch +0 -44
- data/packaging/rpm/passenger_spec/rubygem-passenger-4.0.18-GLIBC_HAVE_LONG_LONG.patch +0 -21
- data/packaging/rpm/repo_update +0 -114
- data/packaging/rpm/setup-system +0 -61
- data/packaging/rpm/shell +0 -10
- data/test/.rspec +0 -4
- data/test/config.json.example +0 -42
- data/test/config.json.rpm-automation +0 -15
- data/test/config.json.travis +0 -15
- data/test/config.json.vagrant +0 -30
- data/test/cxx/ApplicationPool2/DirectSpawnerTest.cpp +0 -124
- data/test/cxx/ApplicationPool2/OptionsTest.cpp +0 -30
- data/test/cxx/ApplicationPool2/PoolTest.cpp +0 -2062
- data/test/cxx/ApplicationPool2/ProcessTest.cpp +0 -130
- data/test/cxx/ApplicationPool2/SmartSpawnerTest.cpp +0 -243
- data/test/cxx/ApplicationPool2/SpawnerTestCases.cpp +0 -823
- data/test/cxx/BufferedIOTest.cpp +0 -364
- data/test/cxx/CachedFileStatTest.cpp +0 -402
- data/test/cxx/CxxTestMain.cpp +0 -181
- data/test/cxx/DataStructures/LStringTest.cpp +0 -275
- data/test/cxx/DataStructures/StringKeyTableTest.cpp +0 -199
- data/test/cxx/DateParsingTest.cpp +0 -75
- data/test/cxx/DechunkerTest.cpp +0 -250
- data/test/cxx/EventedBufferedInputTest.cpp +0 -758
- data/test/cxx/EventedClientTest.cpp +0 -523
- data/test/cxx/FileChangeCheckerTest.cpp +0 -331
- data/test/cxx/FileDescriptorTest.cpp +0 -69
- data/test/cxx/FilterSupportTest.cpp +0 -433
- data/test/cxx/IOUtilsTest.cpp +0 -861
- data/test/cxx/MemoryKit/MbufTest.cpp +0 -213
- data/test/cxx/MessageIOTest.cpp +0 -360
- data/test/cxx/MessagePassingTest.cpp +0 -81
- data/test/cxx/MessageReadersWritersTest.cpp +0 -576
- data/test/cxx/MessageServerTest.cpp +0 -393
- data/test/cxx/ProcessMetricsCollectorTest.cpp +0 -123
- data/test/cxx/RequestHandlerTest.cpp +0 -1463
- data/test/cxx/ResponseCacheTest.cpp +0 -322
- data/test/cxx/ServerKit/ChannelTest.cpp +0 -1467
- data/test/cxx/ServerKit/CookieUtilsTest.cpp +0 -274
- data/test/cxx/ServerKit/FileBufferedChannelTest.cpp +0 -992
- data/test/cxx/ServerKit/HeaderTableTest.cpp +0 -177
- data/test/cxx/ServerKit/HttpServerTest.cpp +0 -1580
- data/test/cxx/ServerKit/ServerTest.cpp +0 -408
- data/test/cxx/StaticStringTest.cpp +0 -220
- data/test/cxx/StringMapTest.cpp +0 -131
- data/test/cxx/SystemTimeTest.cpp +0 -37
- data/test/cxx/TemplateTest.cpp +0 -118
- data/test/cxx/TestSupport.cpp +0 -207
- data/test/cxx/TestSupport.h +0 -333
- data/test/cxx/UnionStationTest.cpp +0 -741
- data/test/cxx/Utils/StrIntUtilsTest.cpp +0 -39
- data/test/cxx/UtilsTest.cpp +0 -672
- data/test/cxx/VariantMapTest.cpp +0 -191
- data/test/gdbinit.example +0 -34
- data/test/integration_tests/apache2_tests.rb +0 -585
- data/test/integration_tests/downloaded_binaries_tests.rb +0 -185
- data/test/integration_tests/native_packaging_spec.rb +0 -368
- data/test/integration_tests/nginx_tests.rb +0 -402
- data/test/integration_tests/shared/example_webapp_tests.rb +0 -289
- data/test/integration_tests/source_packaging_test.rb +0 -201
- data/test/integration_tests/spec_helper.rb +0 -22
- data/test/integration_tests/standalone_tests.rb +0 -392
- data/test/node/line_reader_spec.js +0 -338
- data/test/node/spec_helper.js +0 -65
- data/test/oxt/backtrace_test.cpp +0 -88
- data/test/oxt/counter.hpp +0 -55
- data/test/oxt/dynamic_thread_group_test.cpp +0 -131
- data/test/oxt/oxt_test_main.cpp +0 -27
- data/test/oxt/spin_lock_test.cpp +0 -59
- data/test/oxt/syscall_interruption_test.cpp +0 -39
- data/test/ruby/debug_logging_spec.rb +0 -145
- data/test/ruby/message_channel_spec.rb +0 -196
- data/test/ruby/rack/loader_spec.rb +0 -42
- data/test/ruby/rack/preloader_spec.rb +0 -48
- data/test/ruby/rails3.0/loader_spec.rb +0 -26
- data/test/ruby/rails3.0/preloader_spec.rb +0 -32
- data/test/ruby/rails3.1/loader_spec.rb +0 -26
- data/test/ruby/rails3.1/preloader_spec.rb +0 -32
- data/test/ruby/rails3.2/loader_spec.rb +0 -26
- data/test/ruby/rails3.2/preloader_spec.rb +0 -32
- data/test/ruby/rails4.0/loader_spec.rb +0 -28
- data/test/ruby/rails4.0/preloader_spec.rb +0 -34
- data/test/ruby/rails4.1/loader_spec.rb +0 -28
- data/test/ruby/rails4.1/preloader_spec.rb +0 -34
- data/test/ruby/request_handler_spec.rb +0 -747
- data/test/ruby/shared/loader_sharedspec.rb +0 -247
- data/test/ruby/shared/rails/union_station_extensions_sharedspec.rb +0 -357
- data/test/ruby/shared/ruby_loader_sharedspec.rb +0 -55
- data/test/ruby/spec_helper.rb +0 -114
- data/test/ruby/standalone/runtime_installer_spec.rb +0 -402
- data/test/ruby/union_station_spec.rb +0 -288
- data/test/ruby/utils/file_system_watcher_spec.rb +0 -229
- data/test/ruby/utils/hosts_file_parser.rb +0 -258
- data/test/ruby/utils/tee_input_spec.rb +0 -235
- data/test/ruby/utils/unseekable_socket_spec.rb +0 -66
- data/test/ruby/utils_spec.rb +0 -41
- data/test/stub/apache2/httpd.conf.erb +0 -122
- data/test/stub/apache2/mime.types +0 -748
- data/test/stub/garbage1.dat +0 -0
- data/test/stub/garbage2.dat +0 -0
- data/test/stub/garbage3.dat +0 -0
- data/test/stub/http_request.yml +0 -23
- data/test/stub/index.html +0 -1
- data/test/stub/nginx/koi-utf +0 -109
- data/test/stub/nginx/koi-win +0 -103
- data/test/stub/nginx/mime.types +0 -70
- data/test/stub/nginx/nginx.conf.erb +0 -70
- data/test/stub/nginx/win-utf +0 -126
- data/test/stub/node/app.js +0 -133
- data/test/stub/node/public/.gitignore +0 -0
- data/test/stub/node/tmp/.gitignore +0 -0
- data/test/stub/rack/config.ru +0 -95
- data/test/stub/rack/library.rb +0 -16
- data/test/stub/rack/public/.gitignore +0 -0
- data/test/stub/rack/start.rb +0 -52
- data/test/stub/rack/tmp/.gitignore +0 -0
- data/test/stub/rails3.0/.gitignore +0 -4
- data/test/stub/rails3.0/Gemfile +0 -22
- data/test/stub/rails3.0/Gemfile.lock +0 -80
- data/test/stub/rails3.0/Rakefile +0 -10
- data/test/stub/rails3.0/app/controllers/application_controller.rb +0 -4
- data/test/stub/rails3.0/app/helpers/application_helper.rb +0 -2
- data/test/stub/rails3.0/app/views/layouts/application.html.erb +0 -14
- data/test/stub/rails3.0/config.ru +0 -4
- data/test/stub/rails3.0/config/application.rb +0 -48
- data/test/stub/rails3.0/config/boot.rb +0 -13
- data/test/stub/rails3.0/config/database.yml +0 -22
- data/test/stub/rails3.0/config/environment.rb +0 -5
- data/test/stub/rails3.0/config/environments/development.rb +0 -19
- data/test/stub/rails3.0/config/environments/production.rb +0 -48
- data/test/stub/rails3.0/config/environments/test.rb +0 -32
- data/test/stub/rails3.0/config/initializers/backtrace_silencers.rb +0 -7
- data/test/stub/rails3.0/config/initializers/inflections.rb +0 -10
- data/test/stub/rails3.0/config/initializers/mime_types.rb +0 -5
- data/test/stub/rails3.0/config/initializers/passenger.rb +0 -2
- data/test/stub/rails3.0/config/initializers/secret_token.rb +0 -7
- data/test/stub/rails3.0/config/initializers/session_store.rb +0 -8
- data/test/stub/rails3.0/config/locales/en.yml +0 -5
- data/test/stub/rails3.0/config/routes.rb +0 -58
- data/test/stub/rails3.0/db/seeds.rb +0 -7
- data/test/stub/rails3.0/doc/README_FOR_APP +0 -2
- 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/404.html +0 -26
- data/test/stub/rails3.0/public/422.html +0 -26
- data/test/stub/rails3.0/public/500.html +0 -26
- data/test/stub/rails3.0/public/favicon.ico +0 -0
- data/test/stub/rails3.0/public/index.html +0 -279
- data/test/stub/rails3.0/public/robots.txt +0 -5
- data/test/stub/rails3.0/public/stylesheets/.gitkeep +0 -0
- data/test/stub/rails3.0/script/rails +0 -9
- data/test/stub/rails3.0/test/performance/browsing_test.rb +0 -9
- data/test/stub/rails3.0/test/test_helper.rb +0 -13
- data/test/stub/rails3.0/vendor/plugins/.gitkeep +0 -0
- data/test/stub/rails3.1/.gitignore +0 -15
- data/test/stub/rails3.1/Gemfile +0 -37
- data/test/stub/rails3.1/Gemfile.lock +0 -115
- data/test/stub/rails3.1/README +0 -261
- data/test/stub/rails3.1/Rakefile +0 -7
- data/test/stub/rails3.1/app/assets/images/rails.png +0 -0
- data/test/stub/rails3.1/app/assets/stylesheets/application.css +0 -7
- data/test/stub/rails3.1/app/controllers/application_controller.rb +0 -3
- data/test/stub/rails3.1/app/helpers/application_helper.rb +0 -2
- 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/app/views/layouts/application.html.erb +0 -14
- data/test/stub/rails3.1/config.ru +0 -4
- data/test/stub/rails3.1/config/application.rb +0 -48
- data/test/stub/rails3.1/config/boot.rb +0 -6
- data/test/stub/rails3.1/config/database.yml +0 -25
- data/test/stub/rails3.1/config/environment.rb +0 -5
- data/test/stub/rails3.1/config/environments/development.rb +0 -30
- data/test/stub/rails3.1/config/environments/production.rb +0 -60
- data/test/stub/rails3.1/config/environments/test.rb +0 -39
- data/test/stub/rails3.1/config/initializers/backtrace_silencers.rb +0 -7
- data/test/stub/rails3.1/config/initializers/inflections.rb +0 -10
- data/test/stub/rails3.1/config/initializers/mime_types.rb +0 -5
- data/test/stub/rails3.1/config/initializers/passenger.rb +0 -2
- data/test/stub/rails3.1/config/initializers/secret_token.rb +0 -7
- data/test/stub/rails3.1/config/initializers/session_store.rb +0 -8
- data/test/stub/rails3.1/config/initializers/wrap_parameters.rb +0 -14
- data/test/stub/rails3.1/config/locales/en.yml +0 -5
- data/test/stub/rails3.1/config/routes.rb +0 -58
- data/test/stub/rails3.1/db/seeds.rb +0 -7
- data/test/stub/rails3.1/doc/README_FOR_APP +0 -2
- 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/public/404.html +0 -26
- data/test/stub/rails3.1/public/422.html +0 -26
- data/test/stub/rails3.1/public/500.html +0 -26
- data/test/stub/rails3.1/public/favicon.ico +0 -0
- data/test/stub/rails3.1/public/index.html +0 -241
- data/test/stub/rails3.1/public/robots.txt +0 -5
- data/test/stub/rails3.1/script/rails +0 -6
- 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/performance/browsing_test.rb +0 -12
- data/test/stub/rails3.1/test/test_helper.rb +0 -13
- 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 +0 -15
- data/test/stub/rails3.2/Gemfile +0 -39
- data/test/stub/rails3.2/Gemfile.lock +0 -113
- data/test/stub/rails3.2/Rakefile +0 -7
- data/test/stub/rails3.2/app/assets/images/rails.png +0 -0
- data/test/stub/rails3.2/app/assets/stylesheets/application.css +0 -13
- data/test/stub/rails3.2/app/controllers/application_controller.rb +0 -3
- data/test/stub/rails3.2/app/helpers/application_helper.rb +0 -2
- 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/app/views/layouts/application.html.erb +0 -14
- data/test/stub/rails3.2/config.ru +0 -4
- data/test/stub/rails3.2/config/application.rb +0 -62
- data/test/stub/rails3.2/config/boot.rb +0 -6
- data/test/stub/rails3.2/config/database.yml +0 -25
- data/test/stub/rails3.2/config/environment.rb +0 -5
- data/test/stub/rails3.2/config/environments/development.rb +0 -37
- data/test/stub/rails3.2/config/environments/production.rb +0 -67
- data/test/stub/rails3.2/config/environments/test.rb +0 -37
- data/test/stub/rails3.2/config/initializers/backtrace_silencers.rb +0 -7
- data/test/stub/rails3.2/config/initializers/inflections.rb +0 -15
- data/test/stub/rails3.2/config/initializers/mime_types.rb +0 -5
- data/test/stub/rails3.2/config/initializers/passenger.rb +0 -2
- data/test/stub/rails3.2/config/initializers/secret_token.rb +0 -7
- data/test/stub/rails3.2/config/initializers/session_store.rb +0 -8
- data/test/stub/rails3.2/config/initializers/wrap_parameters.rb +0 -14
- data/test/stub/rails3.2/config/locales/en.yml +0 -5
- data/test/stub/rails3.2/config/routes.rb +0 -58
- data/test/stub/rails3.2/db/seeds.rb +0 -7
- data/test/stub/rails3.2/doc/README_FOR_APP +0 -2
- 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/public/404.html +0 -26
- data/test/stub/rails3.2/public/422.html +0 -26
- data/test/stub/rails3.2/public/500.html +0 -25
- data/test/stub/rails3.2/public/favicon.ico +0 -0
- data/test/stub/rails3.2/public/index.html +0 -241
- data/test/stub/rails3.2/public/robots.txt +0 -5
- data/test/stub/rails3.2/script/rails +0 -6
- 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/performance/browsing_test.rb +0 -12
- data/test/stub/rails3.2/test/test_helper.rb +0 -13
- 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 +0 -16
- data/test/stub/rails4.0/Gemfile +0 -45
- data/test/stub/rails4.0/Gemfile.lock +0 -126
- data/test/stub/rails4.0/README.rdoc +0 -28
- data/test/stub/rails4.0/Rakefile +0 -6
- data/test/stub/rails4.0/app/assets/images/.keep +0 -0
- data/test/stub/rails4.0/app/assets/javascripts/application.js +0 -16
- data/test/stub/rails4.0/app/assets/stylesheets/application.css +0 -13
- data/test/stub/rails4.0/app/controllers/application_controller.rb +0 -5
- data/test/stub/rails4.0/app/controllers/concerns/.keep +0 -0
- data/test/stub/rails4.0/app/helpers/application_helper.rb +0 -2
- 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 +0 -14
- data/test/stub/rails4.0/bin/bundle +0 -3
- data/test/stub/rails4.0/bin/rails +0 -4
- data/test/stub/rails4.0/bin/rake +0 -4
- data/test/stub/rails4.0/config.ru +0 -4
- data/test/stub/rails4.0/config/application.rb +0 -23
- data/test/stub/rails4.0/config/boot.rb +0 -4
- data/test/stub/rails4.0/config/database.yml +0 -25
- data/test/stub/rails4.0/config/environment.rb +0 -5
- data/test/stub/rails4.0/config/environments/development.rb +0 -29
- data/test/stub/rails4.0/config/environments/production.rb +0 -80
- data/test/stub/rails4.0/config/environments/test.rb +0 -36
- data/test/stub/rails4.0/config/initializers/backtrace_silencers.rb +0 -7
- data/test/stub/rails4.0/config/initializers/filter_parameter_logging.rb +0 -4
- data/test/stub/rails4.0/config/initializers/inflections.rb +0 -16
- data/test/stub/rails4.0/config/initializers/mime_types.rb +0 -5
- data/test/stub/rails4.0/config/initializers/passenger.rb +0 -2
- data/test/stub/rails4.0/config/initializers/secret_token.rb +0 -12
- data/test/stub/rails4.0/config/initializers/session_store.rb +0 -3
- data/test/stub/rails4.0/config/initializers/wrap_parameters.rb +0 -14
- data/test/stub/rails4.0/config/locales/en.yml +0 -23
- data/test/stub/rails4.0/config/routes.rb +0 -57
- data/test/stub/rails4.0/db/seeds.rb +0 -7
- 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 +0 -58
- data/test/stub/rails4.0/public/422.html +0 -58
- data/test/stub/rails4.0/public/500.html +0 -57
- data/test/stub/rails4.0/public/favicon.ico +0 -0
- data/test/stub/rails4.0/public/robots.txt +0 -5
- 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 +0 -15
- 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/rails4.1/.gitignore +0 -16
- data/test/stub/rails4.1/Gemfile +0 -45
- data/test/stub/rails4.1/Gemfile.lock +0 -129
- data/test/stub/rails4.1/README.rdoc +0 -28
- data/test/stub/rails4.1/Rakefile +0 -6
- data/test/stub/rails4.1/app/assets/images/.keep +0 -0
- data/test/stub/rails4.1/app/assets/javascripts/application.js +0 -16
- data/test/stub/rails4.1/app/assets/stylesheets/application.css +0 -13
- data/test/stub/rails4.1/app/controllers/application_controller.rb +0 -5
- data/test/stub/rails4.1/app/controllers/concerns/.keep +0 -0
- data/test/stub/rails4.1/app/helpers/application_helper.rb +0 -2
- data/test/stub/rails4.1/app/mailers/.keep +0 -0
- data/test/stub/rails4.1/app/models/.keep +0 -0
- data/test/stub/rails4.1/app/models/concerns/.keep +0 -0
- data/test/stub/rails4.1/app/views/layouts/application.html.erb +0 -14
- data/test/stub/rails4.1/bin/bundle +0 -3
- data/test/stub/rails4.1/bin/rails +0 -4
- data/test/stub/rails4.1/bin/rake +0 -4
- data/test/stub/rails4.1/config.ru +0 -4
- data/test/stub/rails4.1/config/application.rb +0 -23
- data/test/stub/rails4.1/config/boot.rb +0 -4
- data/test/stub/rails4.1/config/database.yml +0 -25
- data/test/stub/rails4.1/config/environment.rb +0 -5
- data/test/stub/rails4.1/config/environments/development.rb +0 -29
- data/test/stub/rails4.1/config/environments/production.rb +0 -80
- data/test/stub/rails4.1/config/environments/test.rb +0 -36
- data/test/stub/rails4.1/config/initializers/backtrace_silencers.rb +0 -7
- data/test/stub/rails4.1/config/initializers/filter_parameter_logging.rb +0 -4
- data/test/stub/rails4.1/config/initializers/inflections.rb +0 -16
- data/test/stub/rails4.1/config/initializers/mime_types.rb +0 -5
- data/test/stub/rails4.1/config/initializers/passenger.rb +0 -5
- data/test/stub/rails4.1/config/initializers/secret_token.rb +0 -12
- data/test/stub/rails4.1/config/initializers/session_store.rb +0 -3
- data/test/stub/rails4.1/config/initializers/wrap_parameters.rb +0 -14
- data/test/stub/rails4.1/config/locales/en.yml +0 -23
- data/test/stub/rails4.1/config/routes.rb +0 -57
- data/test/stub/rails4.1/db/seeds.rb +0 -7
- data/test/stub/rails4.1/lib/assets/.keep +0 -0
- data/test/stub/rails4.1/lib/tasks/.keep +0 -0
- data/test/stub/rails4.1/log/.keep +0 -0
- data/test/stub/rails4.1/public/404.html +0 -58
- data/test/stub/rails4.1/public/422.html +0 -58
- data/test/stub/rails4.1/public/500.html +0 -57
- data/test/stub/rails4.1/public/favicon.ico +0 -0
- data/test/stub/rails4.1/public/robots.txt +0 -5
- data/test/stub/rails4.1/test/controllers/.keep +0 -0
- data/test/stub/rails4.1/test/fixtures/.keep +0 -0
- data/test/stub/rails4.1/test/helpers/.keep +0 -0
- data/test/stub/rails4.1/test/integration/.keep +0 -0
- data/test/stub/rails4.1/test/mailers/.keep +0 -0
- data/test/stub/rails4.1/test/models/.keep +0 -0
- data/test/stub/rails4.1/test/test_helper.rb +0 -15
- data/test/stub/rails4.1/vendor/assets/javascripts/.keep +0 -0
- data/test/stub/rails4.1/vendor/assets/stylesheets/.keep +0 -0
- data/test/stub/start_error.pl +0 -24
- data/test/stub/upload_data.txt +0 -494
- data/test/stub/wsgi/passenger_wsgi.py +0 -212
- data/test/stub/wsgi/public/.gitignore +0 -0
- data/test/stub/wsgi/tmp/.gitignore +0 -0
- data/test/support/allocate_memory.c +0 -14
- data/test/support/apache2_controller.rb +0 -258
- data/test/support/multipart.rb +0 -62
- data/test/support/nginx_controller.rb +0 -97
- data/test/support/placebo-preloader.rb +0 -88
- data/test/support/test_helper.rb +0 -455
- data/test/support/valgrind.h +0 -2539
- data/test/tut/tut.h +0 -1310
- data/test/tut/tut_reporter.h +0 -256
- data/test/valgrind-osx.supp +0 -7
data/passenger.gemspec
CHANGED
@@ -2,28 +2,28 @@ source_root = File.expand_path(File.dirname(__FILE__))
|
|
2
2
|
$LOAD_PATH.unshift("#{source_root}/lib")
|
3
3
|
require 'phusion_passenger'
|
4
4
|
PhusionPassenger.locate_directories
|
5
|
-
|
5
|
+
PhusionPassenger.require_passenger_lib 'packaging'
|
6
6
|
|
7
7
|
Gem::Specification.new do |s|
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
8
|
+
s.platform = Gem::Platform::RUBY
|
9
|
+
s.homepage = "https://www.phusionpassenger.com/"
|
10
|
+
s.summary = "A fast and robust web server and application server for Ruby, Python and Node.js"
|
11
|
+
s.name = PhusionPassenger::PACKAGE_NAME
|
12
|
+
s.version = PhusionPassenger::VERSION_STRING
|
13
|
+
s.rubyforge_project = "passenger"
|
14
|
+
s.author = "Phusion - http://www.phusion.nl/"
|
15
|
+
s.email = "software-signing@phusion.nl"
|
16
|
+
s.require_paths = ["lib"]
|
17
|
+
s.add_dependency 'rake', '>= 0.8.1'
|
18
|
+
s.add_dependency 'rack'
|
19
|
+
s.files = Dir[*PhusionPassenger::Packaging::GLOB] -
|
20
|
+
Dir[*PhusionPassenger::Packaging::EXCLUDE_GLOB]
|
21
|
+
s.executables = PhusionPassenger::Packaging::USER_EXECUTABLES +
|
22
|
+
PhusionPassenger::Packaging::SUPER_USER_EXECUTABLES
|
23
|
+
s.description = "A modern web server and application server for Ruby, Python and Node.js, " +
|
24
|
+
"optimized for performance, low memory usage and ease of use."
|
25
25
|
|
26
|
-
|
27
|
-
|
28
|
-
|
26
|
+
if ENV['OFFICIAL_RELEASE']
|
27
|
+
s.extensions = ["helper-scripts/download_binaries/extconf.rb"]
|
28
|
+
end
|
29
29
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: passenger
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.0.
|
4
|
+
version: 5.0.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Phusion - http://www.phusion.nl/
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-03-
|
11
|
+
date: 2015-03-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|
@@ -53,18 +53,13 @@ extensions:
|
|
53
53
|
extra_rdoc_files: []
|
54
54
|
files:
|
55
55
|
- .editorconfig
|
56
|
-
- .gitignore
|
57
|
-
- .travis.yml
|
58
56
|
- CHANGELOG
|
59
57
|
- CONTRIBUTING.md
|
60
58
|
- CONTRIBUTORS
|
61
|
-
- Gemfile
|
62
|
-
- Gemfile.lock
|
63
59
|
- INSTALL.md
|
64
60
|
- LICENSE
|
65
61
|
- README.md
|
66
62
|
- Rakefile
|
67
|
-
- Vagrantfile
|
68
63
|
- bin/passenger
|
69
64
|
- bin/passenger-config
|
70
65
|
- bin/passenger-install-apache2-module
|
@@ -91,25 +86,6 @@ files:
|
|
91
86
|
- build/ruby_tests.rb
|
92
87
|
- build/test_basics.rb
|
93
88
|
- configure
|
94
|
-
- debian.template/README.Debian
|
95
|
-
- debian.template/changelog
|
96
|
-
- debian.template/compat
|
97
|
-
- debian.template/control.erb
|
98
|
-
- debian.template/copyright
|
99
|
-
- debian.template/libapache2-mod-passenger.install
|
100
|
-
- debian.template/libapache2-mod-passenger.postinst
|
101
|
-
- debian.template/libapache2-mod-passenger.prerm
|
102
|
-
- debian.template/locations.ini.erb
|
103
|
-
- debian.template/passenger-dev.install.erb
|
104
|
-
- debian.template/passenger-doc.install.erb
|
105
|
-
- debian.template/passenger.conf
|
106
|
-
- debian.template/passenger.docs
|
107
|
-
- debian.template/passenger.install.erb
|
108
|
-
- debian.template/passenger.load
|
109
|
-
- debian.template/passenger.manpages
|
110
|
-
- debian.template/patches/series
|
111
|
-
- debian.template/rules.erb
|
112
|
-
- debian.template/source/format
|
113
89
|
- dev/ci/inituidgid
|
114
90
|
- dev/ci/run_jenkins.sh
|
115
91
|
- dev/ci/run_rpm_tests.sh
|
@@ -117,6 +93,7 @@ files:
|
|
117
93
|
- dev/copy_boost_headers
|
118
94
|
- dev/install_scripts_bootstrap_code.rb
|
119
95
|
- dev/list_tests
|
96
|
+
- dev/parse_file_descriptor_log
|
120
97
|
- dev/rack.test/config.ru
|
121
98
|
- dev/rack.test/public/asset.txt
|
122
99
|
- dev/ruby_server.rb
|
@@ -2502,7 +2479,6 @@ files:
|
|
2502
2479
|
- ext/common/DataStructures/HashedStaticString.h
|
2503
2480
|
- ext/common/DataStructures/LString.h
|
2504
2481
|
- ext/common/DataStructures/StringKeyTable.h
|
2505
|
-
- ext/common/EventedBufferedInput.h
|
2506
2482
|
- ext/common/EventedClient.h
|
2507
2483
|
- ext/common/EventedMessageServer.h
|
2508
2484
|
- ext/common/EventedServer.h
|
@@ -2568,6 +2544,7 @@ files:
|
|
2568
2544
|
- ext/common/Utils/Curl.h
|
2569
2545
|
- ext/common/Utils/DateParsing.h
|
2570
2546
|
- ext/common/Utils/Dechunker.h
|
2547
|
+
- ext/common/Utils/FastStringStream.h
|
2571
2548
|
- ext/common/Utils/FileChangeChecker.h
|
2572
2549
|
- ext/common/Utils/HashMap.h
|
2573
2550
|
- ext/common/Utils/Hasher.cpp
|
@@ -2858,61 +2835,6 @@ files:
|
|
2858
2835
|
- node_lib/phusion_passenger/line_reader.js
|
2859
2836
|
- npm-shrinkwrap.json
|
2860
2837
|
- package.json
|
2861
|
-
- packaging/rpm/LICENSE.txt
|
2862
|
-
- packaging/rpm/Makefile
|
2863
|
-
- packaging/rpm/README.md
|
2864
|
-
- packaging/rpm/Vagrantfile
|
2865
|
-
- packaging/rpm/Vagrantfile.centos
|
2866
|
-
- packaging/rpm/build
|
2867
|
-
- packaging/rpm/create_project
|
2868
|
-
- packaging/rpm/git_update
|
2869
|
-
- packaging/rpm/image/Dockerfile
|
2870
|
-
- packaging/rpm/image/Gemfile
|
2871
|
-
- packaging/rpm/image/Gemfile.lock
|
2872
|
-
- packaging/rpm/image/RPM-GPG-KEY-amazon-ga
|
2873
|
-
- packaging/rpm/image/amazon2014-i386.cfg
|
2874
|
-
- packaging/rpm/image/amazon2014-x86_64.cfg
|
2875
|
-
- packaging/rpm/image/site-defaults.cfg
|
2876
|
-
- packaging/rpm/internal/build_tasks.rb
|
2877
|
-
- packaging/rpm/internal/dummygpg
|
2878
|
-
- packaging/rpm/internal/exec_build
|
2879
|
-
- packaging/rpm/internal/get_distro_arch
|
2880
|
-
- packaging/rpm/internal/get_distro_id
|
2881
|
-
- packaging/rpm/internal/git_update
|
2882
|
-
- packaging/rpm/internal/inituidgid
|
2883
|
-
- packaging/rpm/internal/my_init
|
2884
|
-
- packaging/rpm/internal/python27
|
2885
|
-
- packaging/rpm/internal/repo_update
|
2886
|
-
- packaging/rpm/internal/setuser
|
2887
|
-
- packaging/rpm/internal/tracking_helper
|
2888
|
-
- packaging/rpm/jenkins_release
|
2889
|
-
- packaging/rpm/lib/build_tasks_support.rb
|
2890
|
-
- packaging/rpm/lib/preprocessor.rb
|
2891
|
-
- packaging/rpm/nginx_spec/404.html
|
2892
|
-
- packaging/rpm/nginx_spec/50x.html
|
2893
|
-
- packaging/rpm/nginx_spec/index.html
|
2894
|
-
- packaging/rpm/nginx_spec/nginx-auto-cc-gcc.patch
|
2895
|
-
- packaging/rpm/nginx_spec/nginx-logo.png
|
2896
|
-
- packaging/rpm/nginx_spec/nginx-upgrade
|
2897
|
-
- packaging/rpm/nginx_spec/nginx-upgrade.8
|
2898
|
-
- packaging/rpm/nginx_spec/nginx.conf
|
2899
|
-
- packaging/rpm/nginx_spec/nginx.init
|
2900
|
-
- packaging/rpm/nginx_spec/nginx.logrotate
|
2901
|
-
- packaging/rpm/nginx_spec/nginx.service
|
2902
|
-
- packaging/rpm/nginx_spec/nginx.spec.template
|
2903
|
-
- packaging/rpm/nginx_spec/nginx.sysconfig
|
2904
|
-
- packaging/rpm/nginx_spec/passenger.conf
|
2905
|
-
- packaging/rpm/nginx_spec/poweredby.png
|
2906
|
-
- packaging/rpm/passenger_spec/apache-passenger.conf.in
|
2907
|
-
- packaging/rpm/passenger_spec/config.json
|
2908
|
-
- packaging/rpm/passenger_spec/passenger.logrotate
|
2909
|
-
- packaging/rpm/passenger_spec/passenger.spec.template
|
2910
|
-
- packaging/rpm/passenger_spec/passenger_dynamic_thread_group.patch
|
2911
|
-
- packaging/rpm/passenger_spec/passenger_tests_default_config_example.patch
|
2912
|
-
- packaging/rpm/passenger_spec/rubygem-passenger-4.0.18-GLIBC_HAVE_LONG_LONG.patch
|
2913
|
-
- packaging/rpm/repo_update
|
2914
|
-
- packaging/rpm/setup-system
|
2915
|
-
- packaging/rpm/shell
|
2916
2838
|
- passenger.gemspec
|
2917
2839
|
- resources/mime.types
|
2918
2840
|
- resources/oss-binaries.phusionpassenger.com.crt
|
@@ -2964,377 +2886,6 @@ files:
|
|
2964
2886
|
- resources/templates/standalone/config.erb
|
2965
2887
|
- resources/templates/undisclosed_error.html.template
|
2966
2888
|
- resources/union_station_gateway.crt
|
2967
|
-
- test/.rspec
|
2968
|
-
- test/config.json.example
|
2969
|
-
- test/config.json.rpm-automation
|
2970
|
-
- test/config.json.travis
|
2971
|
-
- test/config.json.vagrant
|
2972
|
-
- test/cxx/ApplicationPool2/DirectSpawnerTest.cpp
|
2973
|
-
- test/cxx/ApplicationPool2/OptionsTest.cpp
|
2974
|
-
- test/cxx/ApplicationPool2/PoolTest.cpp
|
2975
|
-
- test/cxx/ApplicationPool2/ProcessTest.cpp
|
2976
|
-
- test/cxx/ApplicationPool2/SmartSpawnerTest.cpp
|
2977
|
-
- test/cxx/ApplicationPool2/SpawnerTestCases.cpp
|
2978
|
-
- test/cxx/BufferedIOTest.cpp
|
2979
|
-
- test/cxx/CachedFileStatTest.cpp
|
2980
|
-
- test/cxx/CxxTestMain.cpp
|
2981
|
-
- test/cxx/DataStructures/LStringTest.cpp
|
2982
|
-
- test/cxx/DataStructures/StringKeyTableTest.cpp
|
2983
|
-
- test/cxx/DateParsingTest.cpp
|
2984
|
-
- test/cxx/DechunkerTest.cpp
|
2985
|
-
- test/cxx/EventedBufferedInputTest.cpp
|
2986
|
-
- test/cxx/EventedClientTest.cpp
|
2987
|
-
- test/cxx/FileChangeCheckerTest.cpp
|
2988
|
-
- test/cxx/FileDescriptorTest.cpp
|
2989
|
-
- test/cxx/FilterSupportTest.cpp
|
2990
|
-
- test/cxx/IOUtilsTest.cpp
|
2991
|
-
- test/cxx/MemoryKit/MbufTest.cpp
|
2992
|
-
- test/cxx/MessageIOTest.cpp
|
2993
|
-
- test/cxx/MessagePassingTest.cpp
|
2994
|
-
- test/cxx/MessageReadersWritersTest.cpp
|
2995
|
-
- test/cxx/MessageServerTest.cpp
|
2996
|
-
- test/cxx/ProcessMetricsCollectorTest.cpp
|
2997
|
-
- test/cxx/RequestHandlerTest.cpp
|
2998
|
-
- test/cxx/ResponseCacheTest.cpp
|
2999
|
-
- test/cxx/ServerKit/ChannelTest.cpp
|
3000
|
-
- test/cxx/ServerKit/CookieUtilsTest.cpp
|
3001
|
-
- test/cxx/ServerKit/FileBufferedChannelTest.cpp
|
3002
|
-
- test/cxx/ServerKit/HeaderTableTest.cpp
|
3003
|
-
- test/cxx/ServerKit/HttpServerTest.cpp
|
3004
|
-
- test/cxx/ServerKit/ServerTest.cpp
|
3005
|
-
- test/cxx/StaticStringTest.cpp
|
3006
|
-
- test/cxx/StringMapTest.cpp
|
3007
|
-
- test/cxx/SystemTimeTest.cpp
|
3008
|
-
- test/cxx/TemplateTest.cpp
|
3009
|
-
- test/cxx/TestSupport.cpp
|
3010
|
-
- test/cxx/TestSupport.h
|
3011
|
-
- test/cxx/UnionStationTest.cpp
|
3012
|
-
- test/cxx/Utils/StrIntUtilsTest.cpp
|
3013
|
-
- test/cxx/UtilsTest.cpp
|
3014
|
-
- test/cxx/VariantMapTest.cpp
|
3015
|
-
- test/gdbinit.example
|
3016
|
-
- test/integration_tests/apache2_tests.rb
|
3017
|
-
- test/integration_tests/downloaded_binaries_tests.rb
|
3018
|
-
- test/integration_tests/native_packaging_spec.rb
|
3019
|
-
- test/integration_tests/nginx_tests.rb
|
3020
|
-
- test/integration_tests/shared/example_webapp_tests.rb
|
3021
|
-
- test/integration_tests/source_packaging_test.rb
|
3022
|
-
- test/integration_tests/spec_helper.rb
|
3023
|
-
- test/integration_tests/standalone_tests.rb
|
3024
|
-
- test/node/line_reader_spec.js
|
3025
|
-
- test/node/spec_helper.js
|
3026
|
-
- test/oxt/backtrace_test.cpp
|
3027
|
-
- test/oxt/counter.hpp
|
3028
|
-
- test/oxt/dynamic_thread_group_test.cpp
|
3029
|
-
- test/oxt/oxt_test_main.cpp
|
3030
|
-
- test/oxt/spin_lock_test.cpp
|
3031
|
-
- test/oxt/syscall_interruption_test.cpp
|
3032
|
-
- test/ruby/debug_logging_spec.rb
|
3033
|
-
- test/ruby/message_channel_spec.rb
|
3034
|
-
- test/ruby/rack/loader_spec.rb
|
3035
|
-
- test/ruby/rack/preloader_spec.rb
|
3036
|
-
- test/ruby/rails3.0/loader_spec.rb
|
3037
|
-
- test/ruby/rails3.0/preloader_spec.rb
|
3038
|
-
- test/ruby/rails3.1/loader_spec.rb
|
3039
|
-
- test/ruby/rails3.1/preloader_spec.rb
|
3040
|
-
- test/ruby/rails3.2/loader_spec.rb
|
3041
|
-
- test/ruby/rails3.2/preloader_spec.rb
|
3042
|
-
- test/ruby/rails4.0/loader_spec.rb
|
3043
|
-
- test/ruby/rails4.0/preloader_spec.rb
|
3044
|
-
- test/ruby/rails4.1/loader_spec.rb
|
3045
|
-
- test/ruby/rails4.1/preloader_spec.rb
|
3046
|
-
- test/ruby/request_handler_spec.rb
|
3047
|
-
- test/ruby/shared/loader_sharedspec.rb
|
3048
|
-
- test/ruby/shared/rails/union_station_extensions_sharedspec.rb
|
3049
|
-
- test/ruby/shared/ruby_loader_sharedspec.rb
|
3050
|
-
- test/ruby/spec_helper.rb
|
3051
|
-
- test/ruby/standalone/runtime_installer_spec.rb
|
3052
|
-
- test/ruby/union_station_spec.rb
|
3053
|
-
- test/ruby/utils/file_system_watcher_spec.rb
|
3054
|
-
- test/ruby/utils/hosts_file_parser.rb
|
3055
|
-
- test/ruby/utils/tee_input_spec.rb
|
3056
|
-
- test/ruby/utils/unseekable_socket_spec.rb
|
3057
|
-
- test/ruby/utils_spec.rb
|
3058
|
-
- test/stub/apache2/httpd.conf.erb
|
3059
|
-
- test/stub/apache2/mime.types
|
3060
|
-
- test/stub/garbage1.dat
|
3061
|
-
- test/stub/garbage2.dat
|
3062
|
-
- test/stub/garbage3.dat
|
3063
|
-
- test/stub/http_request.yml
|
3064
|
-
- test/stub/index.html
|
3065
|
-
- test/stub/nginx/koi-utf
|
3066
|
-
- test/stub/nginx/koi-win
|
3067
|
-
- test/stub/nginx/mime.types
|
3068
|
-
- test/stub/nginx/nginx.conf.erb
|
3069
|
-
- test/stub/nginx/win-utf
|
3070
|
-
- test/stub/node/app.js
|
3071
|
-
- test/stub/node/public/.gitignore
|
3072
|
-
- test/stub/node/tmp/.gitignore
|
3073
|
-
- test/stub/rack/config.ru
|
3074
|
-
- test/stub/rack/library.rb
|
3075
|
-
- test/stub/rack/public/.gitignore
|
3076
|
-
- test/stub/rack/start.rb
|
3077
|
-
- test/stub/rack/tmp/.gitignore
|
3078
|
-
- test/stub/rails3.0/.gitignore
|
3079
|
-
- test/stub/rails3.0/Gemfile
|
3080
|
-
- test/stub/rails3.0/Gemfile.lock
|
3081
|
-
- test/stub/rails3.0/Rakefile
|
3082
|
-
- test/stub/rails3.0/app/controllers/application_controller.rb
|
3083
|
-
- test/stub/rails3.0/app/helpers/application_helper.rb
|
3084
|
-
- test/stub/rails3.0/app/views/layouts/application.html.erb
|
3085
|
-
- test/stub/rails3.0/config.ru
|
3086
|
-
- test/stub/rails3.0/config/application.rb
|
3087
|
-
- test/stub/rails3.0/config/boot.rb
|
3088
|
-
- test/stub/rails3.0/config/database.yml
|
3089
|
-
- test/stub/rails3.0/config/environment.rb
|
3090
|
-
- test/stub/rails3.0/config/environments/development.rb
|
3091
|
-
- test/stub/rails3.0/config/environments/production.rb
|
3092
|
-
- test/stub/rails3.0/config/environments/test.rb
|
3093
|
-
- test/stub/rails3.0/config/initializers/backtrace_silencers.rb
|
3094
|
-
- test/stub/rails3.0/config/initializers/inflections.rb
|
3095
|
-
- test/stub/rails3.0/config/initializers/mime_types.rb
|
3096
|
-
- test/stub/rails3.0/config/initializers/passenger.rb
|
3097
|
-
- test/stub/rails3.0/config/initializers/secret_token.rb
|
3098
|
-
- test/stub/rails3.0/config/initializers/session_store.rb
|
3099
|
-
- test/stub/rails3.0/config/locales/en.yml
|
3100
|
-
- test/stub/rails3.0/config/routes.rb
|
3101
|
-
- test/stub/rails3.0/db/seeds.rb
|
3102
|
-
- test/stub/rails3.0/doc/README_FOR_APP
|
3103
|
-
- test/stub/rails3.0/lib/tasks/.gitkeep
|
3104
|
-
- test/stub/rails3.0/log/.gitignore
|
3105
|
-
- test/stub/rails3.0/public/404.html
|
3106
|
-
- test/stub/rails3.0/public/422.html
|
3107
|
-
- test/stub/rails3.0/public/500.html
|
3108
|
-
- test/stub/rails3.0/public/favicon.ico
|
3109
|
-
- test/stub/rails3.0/public/index.html
|
3110
|
-
- test/stub/rails3.0/public/robots.txt
|
3111
|
-
- test/stub/rails3.0/public/stylesheets/.gitkeep
|
3112
|
-
- test/stub/rails3.0/script/rails
|
3113
|
-
- test/stub/rails3.0/test/performance/browsing_test.rb
|
3114
|
-
- test/stub/rails3.0/test/test_helper.rb
|
3115
|
-
- test/stub/rails3.0/tmp/cache/.gitignore
|
3116
|
-
- test/stub/rails3.0/tmp/pids/.gitignore
|
3117
|
-
- test/stub/rails3.0/vendor/plugins/.gitkeep
|
3118
|
-
- test/stub/rails3.1/.gitignore
|
3119
|
-
- test/stub/rails3.1/Gemfile
|
3120
|
-
- test/stub/rails3.1/Gemfile.lock
|
3121
|
-
- test/stub/rails3.1/README
|
3122
|
-
- test/stub/rails3.1/Rakefile
|
3123
|
-
- test/stub/rails3.1/app/assets/images/rails.png
|
3124
|
-
- test/stub/rails3.1/app/assets/stylesheets/application.css
|
3125
|
-
- test/stub/rails3.1/app/controllers/application_controller.rb
|
3126
|
-
- test/stub/rails3.1/app/helpers/application_helper.rb
|
3127
|
-
- test/stub/rails3.1/app/mailers/.gitkeep
|
3128
|
-
- test/stub/rails3.1/app/models/.gitkeep
|
3129
|
-
- test/stub/rails3.1/app/views/layouts/application.html.erb
|
3130
|
-
- test/stub/rails3.1/config.ru
|
3131
|
-
- test/stub/rails3.1/config/application.rb
|
3132
|
-
- test/stub/rails3.1/config/boot.rb
|
3133
|
-
- test/stub/rails3.1/config/database.yml
|
3134
|
-
- test/stub/rails3.1/config/environment.rb
|
3135
|
-
- test/stub/rails3.1/config/environments/development.rb
|
3136
|
-
- test/stub/rails3.1/config/environments/production.rb
|
3137
|
-
- test/stub/rails3.1/config/environments/test.rb
|
3138
|
-
- test/stub/rails3.1/config/initializers/backtrace_silencers.rb
|
3139
|
-
- test/stub/rails3.1/config/initializers/inflections.rb
|
3140
|
-
- test/stub/rails3.1/config/initializers/mime_types.rb
|
3141
|
-
- test/stub/rails3.1/config/initializers/passenger.rb
|
3142
|
-
- test/stub/rails3.1/config/initializers/secret_token.rb
|
3143
|
-
- test/stub/rails3.1/config/initializers/session_store.rb
|
3144
|
-
- test/stub/rails3.1/config/initializers/wrap_parameters.rb
|
3145
|
-
- test/stub/rails3.1/config/locales/en.yml
|
3146
|
-
- test/stub/rails3.1/config/routes.rb
|
3147
|
-
- test/stub/rails3.1/db/seeds.rb
|
3148
|
-
- test/stub/rails3.1/doc/README_FOR_APP
|
3149
|
-
- test/stub/rails3.1/lib/assets/.gitkeep
|
3150
|
-
- test/stub/rails3.1/lib/tasks/.gitkeep
|
3151
|
-
- test/stub/rails3.1/log/.gitkeep
|
3152
|
-
- test/stub/rails3.1/public/404.html
|
3153
|
-
- test/stub/rails3.1/public/422.html
|
3154
|
-
- test/stub/rails3.1/public/500.html
|
3155
|
-
- test/stub/rails3.1/public/favicon.ico
|
3156
|
-
- test/stub/rails3.1/public/index.html
|
3157
|
-
- test/stub/rails3.1/public/robots.txt
|
3158
|
-
- test/stub/rails3.1/script/rails
|
3159
|
-
- test/stub/rails3.1/test/fixtures/.gitkeep
|
3160
|
-
- test/stub/rails3.1/test/functional/.gitkeep
|
3161
|
-
- test/stub/rails3.1/test/integration/.gitkeep
|
3162
|
-
- test/stub/rails3.1/test/performance/browsing_test.rb
|
3163
|
-
- test/stub/rails3.1/test/test_helper.rb
|
3164
|
-
- test/stub/rails3.1/test/unit/.gitkeep
|
3165
|
-
- test/stub/rails3.1/vendor/assets/stylesheets/.gitkeep
|
3166
|
-
- test/stub/rails3.1/vendor/plugins/.gitkeep
|
3167
|
-
- test/stub/rails3.2/.gitignore
|
3168
|
-
- test/stub/rails3.2/Gemfile
|
3169
|
-
- test/stub/rails3.2/Gemfile.lock
|
3170
|
-
- test/stub/rails3.2/Rakefile
|
3171
|
-
- test/stub/rails3.2/app/assets/images/rails.png
|
3172
|
-
- test/stub/rails3.2/app/assets/stylesheets/application.css
|
3173
|
-
- test/stub/rails3.2/app/controllers/application_controller.rb
|
3174
|
-
- test/stub/rails3.2/app/helpers/application_helper.rb
|
3175
|
-
- test/stub/rails3.2/app/mailers/.gitkeep
|
3176
|
-
- test/stub/rails3.2/app/models/.gitkeep
|
3177
|
-
- test/stub/rails3.2/app/views/layouts/application.html.erb
|
3178
|
-
- test/stub/rails3.2/config.ru
|
3179
|
-
- test/stub/rails3.2/config/application.rb
|
3180
|
-
- test/stub/rails3.2/config/boot.rb
|
3181
|
-
- test/stub/rails3.2/config/database.yml
|
3182
|
-
- test/stub/rails3.2/config/environment.rb
|
3183
|
-
- test/stub/rails3.2/config/environments/development.rb
|
3184
|
-
- test/stub/rails3.2/config/environments/production.rb
|
3185
|
-
- test/stub/rails3.2/config/environments/test.rb
|
3186
|
-
- test/stub/rails3.2/config/initializers/backtrace_silencers.rb
|
3187
|
-
- test/stub/rails3.2/config/initializers/inflections.rb
|
3188
|
-
- test/stub/rails3.2/config/initializers/mime_types.rb
|
3189
|
-
- test/stub/rails3.2/config/initializers/passenger.rb
|
3190
|
-
- test/stub/rails3.2/config/initializers/secret_token.rb
|
3191
|
-
- test/stub/rails3.2/config/initializers/session_store.rb
|
3192
|
-
- test/stub/rails3.2/config/initializers/wrap_parameters.rb
|
3193
|
-
- test/stub/rails3.2/config/locales/en.yml
|
3194
|
-
- test/stub/rails3.2/config/routes.rb
|
3195
|
-
- test/stub/rails3.2/db/seeds.rb
|
3196
|
-
- test/stub/rails3.2/doc/README_FOR_APP
|
3197
|
-
- test/stub/rails3.2/lib/assets/.gitkeep
|
3198
|
-
- test/stub/rails3.2/lib/tasks/.gitkeep
|
3199
|
-
- test/stub/rails3.2/log/.gitkeep
|
3200
|
-
- test/stub/rails3.2/public/404.html
|
3201
|
-
- test/stub/rails3.2/public/422.html
|
3202
|
-
- test/stub/rails3.2/public/500.html
|
3203
|
-
- test/stub/rails3.2/public/favicon.ico
|
3204
|
-
- test/stub/rails3.2/public/index.html
|
3205
|
-
- test/stub/rails3.2/public/robots.txt
|
3206
|
-
- test/stub/rails3.2/script/rails
|
3207
|
-
- test/stub/rails3.2/test/fixtures/.gitkeep
|
3208
|
-
- test/stub/rails3.2/test/functional/.gitkeep
|
3209
|
-
- test/stub/rails3.2/test/integration/.gitkeep
|
3210
|
-
- test/stub/rails3.2/test/performance/browsing_test.rb
|
3211
|
-
- test/stub/rails3.2/test/test_helper.rb
|
3212
|
-
- test/stub/rails3.2/test/unit/.gitkeep
|
3213
|
-
- test/stub/rails3.2/vendor/assets/stylesheets/.gitkeep
|
3214
|
-
- test/stub/rails3.2/vendor/plugins/.gitkeep
|
3215
|
-
- test/stub/rails4.0/.gitignore
|
3216
|
-
- test/stub/rails4.0/Gemfile
|
3217
|
-
- test/stub/rails4.0/Gemfile.lock
|
3218
|
-
- test/stub/rails4.0/README.rdoc
|
3219
|
-
- test/stub/rails4.0/Rakefile
|
3220
|
-
- test/stub/rails4.0/app/assets/images/.keep
|
3221
|
-
- test/stub/rails4.0/app/assets/javascripts/application.js
|
3222
|
-
- test/stub/rails4.0/app/assets/stylesheets/application.css
|
3223
|
-
- test/stub/rails4.0/app/controllers/application_controller.rb
|
3224
|
-
- test/stub/rails4.0/app/controllers/concerns/.keep
|
3225
|
-
- test/stub/rails4.0/app/helpers/application_helper.rb
|
3226
|
-
- test/stub/rails4.0/app/mailers/.keep
|
3227
|
-
- test/stub/rails4.0/app/models/.keep
|
3228
|
-
- test/stub/rails4.0/app/models/concerns/.keep
|
3229
|
-
- test/stub/rails4.0/app/views/layouts/application.html.erb
|
3230
|
-
- test/stub/rails4.0/bin/bundle
|
3231
|
-
- test/stub/rails4.0/bin/rails
|
3232
|
-
- test/stub/rails4.0/bin/rake
|
3233
|
-
- test/stub/rails4.0/config.ru
|
3234
|
-
- test/stub/rails4.0/config/application.rb
|
3235
|
-
- test/stub/rails4.0/config/boot.rb
|
3236
|
-
- test/stub/rails4.0/config/database.yml
|
3237
|
-
- test/stub/rails4.0/config/environment.rb
|
3238
|
-
- test/stub/rails4.0/config/environments/development.rb
|
3239
|
-
- test/stub/rails4.0/config/environments/production.rb
|
3240
|
-
- test/stub/rails4.0/config/environments/test.rb
|
3241
|
-
- test/stub/rails4.0/config/initializers/backtrace_silencers.rb
|
3242
|
-
- test/stub/rails4.0/config/initializers/filter_parameter_logging.rb
|
3243
|
-
- test/stub/rails4.0/config/initializers/inflections.rb
|
3244
|
-
- test/stub/rails4.0/config/initializers/mime_types.rb
|
3245
|
-
- test/stub/rails4.0/config/initializers/passenger.rb
|
3246
|
-
- test/stub/rails4.0/config/initializers/secret_token.rb
|
3247
|
-
- test/stub/rails4.0/config/initializers/session_store.rb
|
3248
|
-
- test/stub/rails4.0/config/initializers/wrap_parameters.rb
|
3249
|
-
- test/stub/rails4.0/config/locales/en.yml
|
3250
|
-
- test/stub/rails4.0/config/routes.rb
|
3251
|
-
- test/stub/rails4.0/db/seeds.rb
|
3252
|
-
- test/stub/rails4.0/lib/assets/.keep
|
3253
|
-
- test/stub/rails4.0/lib/tasks/.keep
|
3254
|
-
- test/stub/rails4.0/log/.keep
|
3255
|
-
- test/stub/rails4.0/public/404.html
|
3256
|
-
- test/stub/rails4.0/public/422.html
|
3257
|
-
- test/stub/rails4.0/public/500.html
|
3258
|
-
- test/stub/rails4.0/public/favicon.ico
|
3259
|
-
- test/stub/rails4.0/public/robots.txt
|
3260
|
-
- test/stub/rails4.0/test/controllers/.keep
|
3261
|
-
- test/stub/rails4.0/test/fixtures/.keep
|
3262
|
-
- test/stub/rails4.0/test/helpers/.keep
|
3263
|
-
- test/stub/rails4.0/test/integration/.keep
|
3264
|
-
- test/stub/rails4.0/test/mailers/.keep
|
3265
|
-
- test/stub/rails4.0/test/models/.keep
|
3266
|
-
- test/stub/rails4.0/test/test_helper.rb
|
3267
|
-
- test/stub/rails4.0/vendor/assets/javascripts/.keep
|
3268
|
-
- test/stub/rails4.0/vendor/assets/stylesheets/.keep
|
3269
|
-
- test/stub/rails4.1/.gitignore
|
3270
|
-
- test/stub/rails4.1/Gemfile
|
3271
|
-
- test/stub/rails4.1/Gemfile.lock
|
3272
|
-
- test/stub/rails4.1/README.rdoc
|
3273
|
-
- test/stub/rails4.1/Rakefile
|
3274
|
-
- test/stub/rails4.1/app/assets/images/.keep
|
3275
|
-
- test/stub/rails4.1/app/assets/javascripts/application.js
|
3276
|
-
- test/stub/rails4.1/app/assets/stylesheets/application.css
|
3277
|
-
- test/stub/rails4.1/app/controllers/application_controller.rb
|
3278
|
-
- test/stub/rails4.1/app/controllers/concerns/.keep
|
3279
|
-
- test/stub/rails4.1/app/helpers/application_helper.rb
|
3280
|
-
- test/stub/rails4.1/app/mailers/.keep
|
3281
|
-
- test/stub/rails4.1/app/models/.keep
|
3282
|
-
- test/stub/rails4.1/app/models/concerns/.keep
|
3283
|
-
- test/stub/rails4.1/app/views/layouts/application.html.erb
|
3284
|
-
- test/stub/rails4.1/bin/bundle
|
3285
|
-
- test/stub/rails4.1/bin/rails
|
3286
|
-
- test/stub/rails4.1/bin/rake
|
3287
|
-
- test/stub/rails4.1/config.ru
|
3288
|
-
- test/stub/rails4.1/config/application.rb
|
3289
|
-
- test/stub/rails4.1/config/boot.rb
|
3290
|
-
- test/stub/rails4.1/config/database.yml
|
3291
|
-
- test/stub/rails4.1/config/environment.rb
|
3292
|
-
- test/stub/rails4.1/config/environments/development.rb
|
3293
|
-
- test/stub/rails4.1/config/environments/production.rb
|
3294
|
-
- test/stub/rails4.1/config/environments/test.rb
|
3295
|
-
- test/stub/rails4.1/config/initializers/backtrace_silencers.rb
|
3296
|
-
- test/stub/rails4.1/config/initializers/filter_parameter_logging.rb
|
3297
|
-
- test/stub/rails4.1/config/initializers/inflections.rb
|
3298
|
-
- test/stub/rails4.1/config/initializers/mime_types.rb
|
3299
|
-
- test/stub/rails4.1/config/initializers/passenger.rb
|
3300
|
-
- test/stub/rails4.1/config/initializers/secret_token.rb
|
3301
|
-
- test/stub/rails4.1/config/initializers/session_store.rb
|
3302
|
-
- test/stub/rails4.1/config/initializers/wrap_parameters.rb
|
3303
|
-
- test/stub/rails4.1/config/locales/en.yml
|
3304
|
-
- test/stub/rails4.1/config/routes.rb
|
3305
|
-
- test/stub/rails4.1/db/seeds.rb
|
3306
|
-
- test/stub/rails4.1/lib/assets/.keep
|
3307
|
-
- test/stub/rails4.1/lib/tasks/.keep
|
3308
|
-
- test/stub/rails4.1/log/.keep
|
3309
|
-
- test/stub/rails4.1/public/404.html
|
3310
|
-
- test/stub/rails4.1/public/422.html
|
3311
|
-
- test/stub/rails4.1/public/500.html
|
3312
|
-
- test/stub/rails4.1/public/favicon.ico
|
3313
|
-
- test/stub/rails4.1/public/robots.txt
|
3314
|
-
- test/stub/rails4.1/test/controllers/.keep
|
3315
|
-
- test/stub/rails4.1/test/fixtures/.keep
|
3316
|
-
- test/stub/rails4.1/test/helpers/.keep
|
3317
|
-
- test/stub/rails4.1/test/integration/.keep
|
3318
|
-
- test/stub/rails4.1/test/mailers/.keep
|
3319
|
-
- test/stub/rails4.1/test/models/.keep
|
3320
|
-
- test/stub/rails4.1/test/test_helper.rb
|
3321
|
-
- test/stub/rails4.1/vendor/assets/javascripts/.keep
|
3322
|
-
- test/stub/rails4.1/vendor/assets/stylesheets/.keep
|
3323
|
-
- test/stub/start_error.pl
|
3324
|
-
- test/stub/upload_data.txt
|
3325
|
-
- test/stub/wsgi/passenger_wsgi.py
|
3326
|
-
- test/stub/wsgi/public/.gitignore
|
3327
|
-
- test/stub/wsgi/tmp/.gitignore
|
3328
|
-
- test/support/allocate_memory.c
|
3329
|
-
- test/support/apache2_controller.rb
|
3330
|
-
- test/support/multipart.rb
|
3331
|
-
- test/support/nginx_controller.rb
|
3332
|
-
- test/support/placebo-preloader.rb
|
3333
|
-
- test/support/test_helper.rb
|
3334
|
-
- test/support/valgrind.h
|
3335
|
-
- test/tut/tut.h
|
3336
|
-
- test/tut/tut_reporter.h
|
3337
|
-
- test/valgrind-osx.supp
|
3338
2889
|
homepage: https://www.phusionpassenger.com/
|
3339
2890
|
licenses: []
|
3340
2891
|
metadata: {}
|