--- !ruby/object:Gem::Specification name: rack version: !ruby/object:Gem::Version version: 2.0.9.1 platform: ruby authors: - Leah Neukirchen autorequire: bindir: bin cert_chain: [] date: 2022-05-27 00:00:00.000000000 Z dependencies: - !ruby/object:Gem::Dependency name: minitest requirement: !ruby/object:Gem::Requirement requirements: - - "~>" - !ruby/object:Gem::Version version: '5.0' type: :development prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - "~>" - !ruby/object:Gem::Version version: '5.0' - !ruby/object:Gem::Dependency name: minitest-sprint requirement: !ruby/object:Gem::Requirement requirements: - - ">=" - !ruby/object:Gem::Version version: '0' type: :development prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - ">=" - !ruby/object:Gem::Version version: '0' - !ruby/object:Gem::Dependency name: rake requirement: !ruby/object:Gem::Requirement requirements: - - ">=" - !ruby/object:Gem::Version version: '0' type: :development prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - ">=" - !ruby/object:Gem::Version version: '0' description: | Rack provides a minimal, modular and adaptable interface for developing web applications in Ruby. By wrapping HTTP requests and responses in the simplest way possible, it unifies and distills the API for web servers, web frameworks, and software in between (the so-called middleware) into a single method call. Also see https://rack.github.io/. email: leah@vuxu.org executables: - rackup extensions: [] extra_rdoc_files: - README.rdoc - HISTORY.md files: - COPYING - HISTORY.md - README.rdoc - Rakefile - SPEC - bin/rackup - contrib/rack.png - contrib/rack.svg - contrib/rack_logo.svg - contrib/rdoc.css - example/lobster.ru - example/protectedlobster.rb - example/protectedlobster.ru - lib/rack.rb - lib/rack/auth/abstract/handler.rb - lib/rack/auth/abstract/request.rb - lib/rack/auth/basic.rb - lib/rack/auth/digest/md5.rb - lib/rack/auth/digest/nonce.rb - lib/rack/auth/digest/params.rb - lib/rack/auth/digest/request.rb - lib/rack/body_proxy.rb - lib/rack/builder.rb - lib/rack/cascade.rb - lib/rack/chunked.rb - lib/rack/common_logger.rb - lib/rack/conditional_get.rb - lib/rack/config.rb - lib/rack/content_length.rb - lib/rack/content_type.rb - lib/rack/deflater.rb - lib/rack/directory.rb - lib/rack/etag.rb - lib/rack/events.rb - lib/rack/file.rb - lib/rack/handler.rb - lib/rack/handler/cgi.rb - lib/rack/handler/fastcgi.rb - lib/rack/handler/lsws.rb - lib/rack/handler/scgi.rb - lib/rack/handler/thin.rb - lib/rack/handler/webrick.rb - lib/rack/head.rb - lib/rack/lint.rb - lib/rack/lobster.rb - lib/rack/lock.rb - lib/rack/logger.rb - lib/rack/media_type.rb - lib/rack/method_override.rb - lib/rack/mime.rb - lib/rack/mock.rb - lib/rack/multipart.rb - lib/rack/multipart/generator.rb - lib/rack/multipart/parser.rb - lib/rack/multipart/uploaded_file.rb - lib/rack/null_logger.rb - lib/rack/query_parser.rb - lib/rack/recursive.rb - lib/rack/reloader.rb - lib/rack/request.rb - lib/rack/response.rb - lib/rack/rewindable_input.rb - lib/rack/runtime.rb - lib/rack/sendfile.rb - lib/rack/server.rb - lib/rack/session/abstract/id.rb - lib/rack/session/cookie.rb - lib/rack/session/memcache.rb - lib/rack/session/pool.rb - lib/rack/show_exceptions.rb - lib/rack/show_status.rb - lib/rack/static.rb - lib/rack/tempfile_reaper.rb - lib/rack/urlmap.rb - lib/rack/utils.rb - rack.gemspec - test/builder/an_underscore_app.rb - test/builder/anything.rb - test/builder/comment.ru - test/builder/end.ru - test/builder/line.ru - test/builder/options.ru - test/cgi/assets/folder/test.js - test/cgi/assets/fonts/font.eot - test/cgi/assets/images/image.png - test/cgi/assets/index.html - test/cgi/assets/javascripts/app.js - test/cgi/assets/stylesheets/app.css - test/cgi/lighttpd.conf - test/cgi/rackup_stub.rb - test/cgi/sample_rackup.ru - test/cgi/test - test/cgi/test+directory/test+file - test/cgi/test.fcgi - test/cgi/test.gz - test/cgi/test.ru - test/gemloader.rb - test/helper.rb - test/multipart/bad_robots - test/multipart/binary - test/multipart/content_type_and_no_filename - test/multipart/empty - test/multipart/fail_16384_nofile - test/multipart/file1.txt - test/multipart/filename_and_modification_param - test/multipart/filename_and_no_name - test/multipart/filename_with_encoded_words - test/multipart/filename_with_escaped_quotes - test/multipart/filename_with_escaped_quotes_and_modification_param - test/multipart/filename_with_null_byte - test/multipart/filename_with_percent_escaped_quotes - test/multipart/filename_with_single_quote - test/multipart/filename_with_unescaped_percentages - test/multipart/filename_with_unescaped_percentages2 - test/multipart/filename_with_unescaped_percentages3 - test/multipart/filename_with_unescaped_quotes - test/multipart/ie - test/multipart/invalid_character - test/multipart/mixed_files - test/multipart/nested - test/multipart/none - test/multipart/quoted - test/multipart/rack-logo.png - test/multipart/semicolon - test/multipart/text - test/multipart/three_files_three_fields - test/multipart/unity3d_wwwform - test/multipart/webkit - test/rackup/config.ru - test/registering_handler/rack/handler/registering_myself.rb - test/spec_auth_basic.rb - test/spec_auth_digest.rb - test/spec_body_proxy.rb - test/spec_builder.rb - test/spec_cascade.rb - test/spec_cgi.rb - test/spec_chunked.rb - test/spec_common_logger.rb - test/spec_conditional_get.rb - test/spec_config.rb - test/spec_content_length.rb - test/spec_content_type.rb - test/spec_deflater.rb - test/spec_directory.rb - test/spec_etag.rb - test/spec_events.rb - test/spec_fastcgi.rb - test/spec_file.rb - test/spec_handler.rb - test/spec_head.rb - test/spec_lint.rb - test/spec_lobster.rb - test/spec_lock.rb - test/spec_logger.rb - test/spec_media_type.rb - test/spec_method_override.rb - test/spec_mime.rb - test/spec_mock.rb - test/spec_multipart.rb - test/spec_null_logger.rb - test/spec_recursive.rb - test/spec_request.rb - test/spec_response.rb - test/spec_rewindable_input.rb - test/spec_runtime.rb - test/spec_sendfile.rb - test/spec_server.rb - test/spec_session_abstract_id.rb - test/spec_session_abstract_session_hash.rb - test/spec_session_cookie.rb - test/spec_session_memcache.rb - test/spec_session_persisted_secure_secure_session_hash.rb - test/spec_session_pool.rb - test/spec_show_exceptions.rb - test/spec_show_status.rb - test/spec_static.rb - test/spec_tempfile_reaper.rb - test/spec_thin.rb - test/spec_urlmap.rb - test/spec_utils.rb - test/spec_version.rb - test/spec_webrick.rb - test/static/another/index.html - test/static/foo.html - test/static/index.html - test/testrequest.rb - test/unregistered_handler/rack/handler/unregistered.rb - test/unregistered_handler/rack/handler/unregistered_long_one.rb homepage: https://rack.github.io/ licenses: - MIT metadata: {} post_install_message: rdoc_options: [] require_paths: - lib required_ruby_version: !ruby/object:Gem::Requirement requirements: - - ">=" - !ruby/object:Gem::Version version: 2.2.2 required_rubygems_version: !ruby/object:Gem::Requirement requirements: - - ">=" - !ruby/object:Gem::Version version: '0' requirements: [] rubygems_version: 3.0.3.1 signing_key: specification_version: 4 summary: a modular Ruby webserver interface test_files: - test/spec_multipart.rb - test/spec_deflater.rb - test/spec_static.rb - test/spec_session_cookie.rb - test/spec_session_pool.rb - test/spec_etag.rb - test/spec_version.rb - test/spec_handler.rb - test/spec_thin.rb - test/spec_session_abstract_id.rb - test/spec_mime.rb - test/spec_recursive.rb - test/spec_null_logger.rb - test/spec_media_type.rb - test/spec_cgi.rb - test/spec_method_override.rb - test/spec_content_type.rb - test/spec_session_abstract_session_hash.rb - test/spec_request.rb - test/spec_chunked.rb - test/spec_show_exceptions.rb - test/spec_runtime.rb - test/spec_session_persisted_secure_secure_session_hash.rb - test/spec_fastcgi.rb - test/spec_common_logger.rb - test/spec_builder.rb - test/spec_config.rb - test/spec_utils.rb - test/spec_sendfile.rb - test/spec_lobster.rb - test/spec_lint.rb - test/spec_conditional_get.rb - test/spec_tempfile_reaper.rb - test/spec_mock.rb - test/spec_server.rb - test/spec_directory.rb - test/spec_webrick.rb - test/spec_response.rb - test/spec_file.rb - test/spec_show_status.rb - test/spec_body_proxy.rb - test/spec_logger.rb - test/spec_auth_digest.rb - test/spec_urlmap.rb - test/spec_events.rb - test/spec_cascade.rb - test/spec_auth_basic.rb - test/spec_head.rb - test/spec_lock.rb - test/spec_rewindable_input.rb - test/spec_session_memcache.rb - test/spec_content_length.rb