rack 2.0.9.3 → 2.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (191) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +675 -0
  3. data/CONTRIBUTING.md +136 -0
  4. data/{COPYING → MIT-LICENSE} +4 -2
  5. data/README.rdoc +152 -162
  6. data/Rakefile +37 -23
  7. data/{SPEC → SPEC.rdoc} +44 -15
  8. data/bin/rackup +1 -0
  9. data/example/lobster.ru +2 -0
  10. data/example/protectedlobster.rb +3 -1
  11. data/example/protectedlobster.ru +2 -0
  12. data/lib/rack/auth/abstract/handler.rb +3 -1
  13. data/lib/rack/auth/abstract/request.rb +1 -1
  14. data/lib/rack/auth/basic.rb +7 -4
  15. data/lib/rack/auth/digest/md5.rb +13 -11
  16. data/lib/rack/auth/digest/nonce.rb +6 -3
  17. data/lib/rack/auth/digest/params.rb +4 -2
  18. data/lib/rack/auth/digest/request.rb +5 -3
  19. data/lib/rack/body_proxy.rb +15 -14
  20. data/lib/rack/builder.rb +116 -23
  21. data/lib/rack/cascade.rb +28 -12
  22. data/lib/rack/chunked.rb +68 -20
  23. data/lib/rack/common_logger.rb +33 -28
  24. data/lib/rack/conditional_get.rb +20 -16
  25. data/lib/rack/config.rb +2 -0
  26. data/lib/rack/content_length.rb +8 -7
  27. data/lib/rack/content_type.rb +5 -4
  28. data/lib/rack/core_ext/regexp.rb +14 -0
  29. data/lib/rack/deflater.rb +59 -34
  30. data/lib/rack/directory.rb +84 -64
  31. data/lib/rack/etag.rb +5 -4
  32. data/lib/rack/events.rb +19 -20
  33. data/lib/rack/file.rb +4 -173
  34. data/lib/rack/files.rb +218 -0
  35. data/lib/rack/handler/cgi.rb +2 -3
  36. data/lib/rack/handler/fastcgi.rb +4 -4
  37. data/lib/rack/handler/lsws.rb +3 -3
  38. data/lib/rack/handler/scgi.rb +9 -8
  39. data/lib/rack/handler/thin.rb +17 -11
  40. data/lib/rack/handler/webrick.rb +15 -6
  41. data/lib/rack/handler.rb +7 -2
  42. data/lib/rack/head.rb +1 -1
  43. data/lib/rack/lint.rb +72 -26
  44. data/lib/rack/lobster.rb +10 -10
  45. data/lib/rack/lock.rb +2 -1
  46. data/lib/rack/logger.rb +2 -0
  47. data/lib/rack/media_type.rb +10 -5
  48. data/lib/rack/method_override.rb +4 -2
  49. data/lib/rack/mime.rb +9 -1
  50. data/lib/rack/mock.rb +97 -20
  51. data/lib/rack/multipart/generator.rb +17 -13
  52. data/lib/rack/multipart/parser.rb +58 -73
  53. data/lib/rack/multipart/uploaded_file.rb +15 -7
  54. data/lib/rack/multipart.rb +7 -4
  55. data/lib/rack/null_logger.rb +2 -0
  56. data/lib/rack/query_parser.rb +53 -28
  57. data/lib/rack/recursive.rb +7 -5
  58. data/lib/rack/reloader.rb +8 -4
  59. data/lib/rack/request.rb +210 -61
  60. data/lib/rack/response.rb +127 -44
  61. data/lib/rack/rewindable_input.rb +4 -3
  62. data/lib/rack/runtime.rb +6 -4
  63. data/lib/rack/sendfile.rb +13 -9
  64. data/lib/rack/server.rb +95 -24
  65. data/lib/rack/session/abstract/id.rb +33 -21
  66. data/lib/rack/session/cookie.rb +12 -12
  67. data/lib/rack/session/memcache.rb +4 -93
  68. data/lib/rack/session/pool.rb +5 -3
  69. data/lib/rack/show_exceptions.rb +17 -13
  70. data/lib/rack/show_status.rb +5 -5
  71. data/lib/rack/static.rb +23 -11
  72. data/lib/rack/tempfile_reaper.rb +1 -1
  73. data/lib/rack/urlmap.rb +12 -6
  74. data/lib/rack/utils.rb +105 -130
  75. data/lib/rack/version.rb +29 -0
  76. data/lib/rack.rb +67 -73
  77. data/rack.gemspec +40 -28
  78. metadata +39 -182
  79. data/HISTORY.md +0 -520
  80. data/test/builder/an_underscore_app.rb +0 -5
  81. data/test/builder/anything.rb +0 -5
  82. data/test/builder/comment.ru +0 -4
  83. data/test/builder/end.ru +0 -5
  84. data/test/builder/line.ru +0 -1
  85. data/test/builder/options.ru +0 -2
  86. data/test/cgi/assets/folder/test.js +0 -1
  87. data/test/cgi/assets/fonts/font.eot +0 -1
  88. data/test/cgi/assets/images/image.png +0 -1
  89. data/test/cgi/assets/index.html +0 -1
  90. data/test/cgi/assets/javascripts/app.js +0 -1
  91. data/test/cgi/assets/stylesheets/app.css +0 -1
  92. data/test/cgi/lighttpd.conf +0 -26
  93. data/test/cgi/rackup_stub.rb +0 -6
  94. data/test/cgi/sample_rackup.ru +0 -5
  95. data/test/cgi/test +0 -9
  96. data/test/cgi/test+directory/test+file +0 -1
  97. data/test/cgi/test.fcgi +0 -9
  98. data/test/cgi/test.gz +0 -0
  99. data/test/cgi/test.ru +0 -5
  100. data/test/gemloader.rb +0 -10
  101. data/test/helper.rb +0 -34
  102. data/test/multipart/bad_robots +0 -259
  103. data/test/multipart/binary +0 -0
  104. data/test/multipart/content_type_and_no_filename +0 -6
  105. data/test/multipart/empty +0 -10
  106. data/test/multipart/fail_16384_nofile +0 -814
  107. data/test/multipart/file1.txt +0 -1
  108. data/test/multipart/filename_and_modification_param +0 -7
  109. data/test/multipart/filename_and_no_name +0 -6
  110. data/test/multipart/filename_with_encoded_words +0 -7
  111. data/test/multipart/filename_with_escaped_quotes +0 -6
  112. data/test/multipart/filename_with_escaped_quotes_and_modification_param +0 -7
  113. data/test/multipart/filename_with_null_byte +0 -7
  114. data/test/multipart/filename_with_percent_escaped_quotes +0 -6
  115. data/test/multipart/filename_with_single_quote +0 -7
  116. data/test/multipart/filename_with_unescaped_percentages +0 -6
  117. data/test/multipart/filename_with_unescaped_percentages2 +0 -6
  118. data/test/multipart/filename_with_unescaped_percentages3 +0 -6
  119. data/test/multipart/filename_with_unescaped_quotes +0 -6
  120. data/test/multipart/ie +0 -6
  121. data/test/multipart/invalid_character +0 -6
  122. data/test/multipart/mixed_files +0 -21
  123. data/test/multipart/nested +0 -10
  124. data/test/multipart/none +0 -9
  125. data/test/multipart/quoted +0 -15
  126. data/test/multipart/rack-logo.png +0 -0
  127. data/test/multipart/semicolon +0 -6
  128. data/test/multipart/text +0 -15
  129. data/test/multipart/three_files_three_fields +0 -31
  130. data/test/multipart/unity3d_wwwform +0 -11
  131. data/test/multipart/webkit +0 -32
  132. data/test/rackup/config.ru +0 -31
  133. data/test/registering_handler/rack/handler/registering_myself.rb +0 -8
  134. data/test/spec_auth_basic.rb +0 -89
  135. data/test/spec_auth_digest.rb +0 -260
  136. data/test/spec_body_proxy.rb +0 -85
  137. data/test/spec_builder.rb +0 -233
  138. data/test/spec_cascade.rb +0 -63
  139. data/test/spec_cgi.rb +0 -84
  140. data/test/spec_chunked.rb +0 -103
  141. data/test/spec_common_logger.rb +0 -107
  142. data/test/spec_conditional_get.rb +0 -103
  143. data/test/spec_config.rb +0 -23
  144. data/test/spec_content_length.rb +0 -86
  145. data/test/spec_content_type.rb +0 -46
  146. data/test/spec_deflater.rb +0 -375
  147. data/test/spec_directory.rb +0 -148
  148. data/test/spec_etag.rb +0 -108
  149. data/test/spec_events.rb +0 -133
  150. data/test/spec_fastcgi.rb +0 -85
  151. data/test/spec_file.rb +0 -264
  152. data/test/spec_handler.rb +0 -57
  153. data/test/spec_head.rb +0 -46
  154. data/test/spec_lint.rb +0 -520
  155. data/test/spec_lobster.rb +0 -59
  156. data/test/spec_lock.rb +0 -204
  157. data/test/spec_logger.rb +0 -24
  158. data/test/spec_media_type.rb +0 -42
  159. data/test/spec_method_override.rb +0 -110
  160. data/test/spec_mime.rb +0 -51
  161. data/test/spec_mock.rb +0 -359
  162. data/test/spec_multipart.rb +0 -721
  163. data/test/spec_null_logger.rb +0 -21
  164. data/test/spec_recursive.rb +0 -75
  165. data/test/spec_request.rb +0 -1423
  166. data/test/spec_response.rb +0 -528
  167. data/test/spec_rewindable_input.rb +0 -128
  168. data/test/spec_runtime.rb +0 -50
  169. data/test/spec_sendfile.rb +0 -125
  170. data/test/spec_server.rb +0 -193
  171. data/test/spec_session_abstract_id.rb +0 -31
  172. data/test/spec_session_abstract_session_hash.rb +0 -45
  173. data/test/spec_session_cookie.rb +0 -442
  174. data/test/spec_session_memcache.rb +0 -357
  175. data/test/spec_session_persisted_secure_secure_session_hash.rb +0 -73
  176. data/test/spec_session_pool.rb +0 -247
  177. data/test/spec_show_exceptions.rb +0 -93
  178. data/test/spec_show_status.rb +0 -104
  179. data/test/spec_static.rb +0 -184
  180. data/test/spec_tempfile_reaper.rb +0 -64
  181. data/test/spec_thin.rb +0 -96
  182. data/test/spec_urlmap.rb +0 -237
  183. data/test/spec_utils.rb +0 -742
  184. data/test/spec_version.rb +0 -11
  185. data/test/spec_webrick.rb +0 -206
  186. data/test/static/another/index.html +0 -1
  187. data/test/static/foo.html +0 -1
  188. data/test/static/index.html +0 -1
  189. data/test/testrequest.rb +0 -78
  190. data/test/unregistered_handler/rack/handler/unregistered.rb +0 -7
  191. data/test/unregistered_handler/rack/handler/unregistered_long_one.rb +0 -7
data/CONTRIBUTING.md ADDED
@@ -0,0 +1,136 @@
1
+ Contributing to Rack
2
+ =====================
3
+
4
+ Rack is work of [hundreds of contributors](https://github.com/rack/rack/graphs/contributors). You're encouraged to submit [pull requests](https://github.com/rack/rack/pulls), [propose features and discuss issues](https://github.com/rack/rack/issues). When in doubt, post to the [rack-devel](http://groups.google.com/group/rack-devel) mailing list.
5
+
6
+ #### Fork the Project
7
+
8
+ Fork the [project on Github](https://github.com/rack/rack) and check out your copy.
9
+
10
+ ```
11
+ git clone https://github.com/contributor/rack.git
12
+ cd rack
13
+ git remote add upstream https://github.com/rack/rack.git
14
+ ```
15
+
16
+ #### Create a Topic Branch
17
+
18
+ Make sure your fork is up-to-date and create a topic branch for your feature or bug fix.
19
+
20
+ ```
21
+ git checkout master
22
+ git pull upstream master
23
+ git checkout -b my-feature-branch
24
+ ```
25
+
26
+ #### Bundle Install and Quick Test
27
+
28
+ Ensure that you can build the project and run quick tests.
29
+
30
+ ```
31
+ bundle install --without extra
32
+ bundle exec rake test
33
+ ```
34
+
35
+ #### Running All Tests
36
+
37
+ Install all dependencies.
38
+
39
+ ```
40
+ bundle install
41
+ ```
42
+
43
+ Run all tests.
44
+
45
+ ```
46
+ rake test
47
+ ```
48
+
49
+ The test suite has no dependencies outside of the core Ruby installation and bacon.
50
+
51
+ Some tests will be skipped if a dependency is not found.
52
+
53
+ To run the test suite completely, you need:
54
+
55
+ * fcgi
56
+ * dalli
57
+ * thin
58
+
59
+ To test Memcache sessions, you need memcached (will be run on port 11211) and dalli installed.
60
+
61
+ #### Write Tests
62
+
63
+ Try to write a test that reproduces the problem you're trying to fix or describes a feature that you want to build.
64
+
65
+ We definitely appreciate pull requests that highlight or reproduce a problem, even without a fix.
66
+
67
+ #### Write Code
68
+
69
+ Implement your feature or bug fix.
70
+
71
+ Make sure that `bundle exec rake fulltest` completes without errors.
72
+
73
+ #### Write Documentation
74
+
75
+ Document any external behavior in the [README](README.rdoc).
76
+
77
+ #### Update Changelog
78
+
79
+ Add a line to [CHANGELOG](CHANGELOG.md).
80
+
81
+ #### Commit Changes
82
+
83
+ Make sure git knows your name and email address:
84
+
85
+ ```
86
+ git config --global user.name "Your Name"
87
+ git config --global user.email "contributor@example.com"
88
+ ```
89
+
90
+ Writing good commit logs is important. A commit log should describe what changed and why.
91
+
92
+ ```
93
+ git add ...
94
+ git commit
95
+ ```
96
+
97
+ #### Push
98
+
99
+ ```
100
+ git push origin my-feature-branch
101
+ ```
102
+
103
+ #### Make a Pull Request
104
+
105
+ Go to https://github.com/contributor/rack and select your feature branch. Click the 'Pull Request' button and fill out the form. Pull requests are usually reviewed within a few days.
106
+
107
+ #### Rebase
108
+
109
+ If you've been working on a change for a while, rebase with upstream/master.
110
+
111
+ ```
112
+ git fetch upstream
113
+ git rebase upstream/master
114
+ git push origin my-feature-branch -f
115
+ ```
116
+
117
+ #### Make Required Changes
118
+
119
+ Amend your previous commit and force push the changes.
120
+
121
+ ```
122
+ git commit --amend
123
+ git push origin my-feature-branch -f
124
+ ```
125
+
126
+ #### Check on Your Pull Request
127
+
128
+ Go back to your pull request after a few minutes and see whether it passed muster with Travis-CI. Everything should look green, otherwise fix issues and amend your commit as described above.
129
+
130
+ #### Be Patient
131
+
132
+ It's likely that your change will not be merged and that the nitpicky maintainers will ask you to do more, or fix seemingly benign problems. Hang on there!
133
+
134
+ #### Thank You
135
+
136
+ Please do know that we really appreciate and value your time and work. We love you, really.
@@ -1,4 +1,6 @@
1
- Copyright (c) 2007-2016 Christian Neukirchen <purl.org/net/chneukirchen>
1
+ The MIT License (MIT)
2
+
3
+ Copyright (C) 2007-2019 Leah Neukirchen <http://leahneukirchen.org/infopage.html>
2
4
 
3
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
4
6
  of this software and associated documentation files (the "Software"), to
@@ -13,6 +15,6 @@ all copies or substantial portions of the Software.
13
15
  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
16
  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
17
  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
16
- THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
18
+ THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
17
19
  IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
18
20
  CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.rdoc CHANGED
@@ -1,99 +1,139 @@
1
- = Rack, a modular Ruby webserver interface {<img src="https://secure.travis-ci.org/rack/rack.svg" alt="Build Status" />}[http://travis-ci.org/rack/rack] {<img src="https://gemnasium.com/rack/rack.svg" alt="Dependency Status" />}[https://gemnasium.com/rack/rack]
1
+ = \Rack, a modular Ruby webserver interface
2
2
 
3
- Rack provides a minimal, modular, and adaptable interface for developing
4
- web applications in Ruby. By wrapping HTTP requests and responses in
3
+ {<img src="https://rack.github.io/logo.png" width="400" alt="rack powers web applications" />}[https://rack.github.io/]
4
+
5
+ {<img src="https://circleci.com/gh/rack/rack.svg?style=svg" alt="CircleCI" />}[https://circleci.com/gh/rack/rack]
6
+ {<img src="https://badge.fury.io/rb/rack.svg" alt="Gem Version" />}[http://badge.fury.io/rb/rack]
7
+ {<img src="https://api.dependabot.com/badges/compatibility_score?dependency-name=rack&package-manager=bundler&version-scheme=semver" alt="SemVer Stability" />}[https://dependabot.com/compatibility-score.html?dependency-name=rack&package-manager=bundler&version-scheme=semver]
8
+ {<img src="http://inch-ci.org/github/rack/rack.svg?branch=master" alt="Inline docs" />}[http://inch-ci.org/github/rack/rack]
9
+
10
+ \Rack provides a minimal, modular, and adaptable interface for developing
11
+ web applications in Ruby. By wrapping HTTP requests and responses in
5
12
  the simplest way possible, it unifies and distills the API for web
6
13
  servers, web frameworks, and software in between (the so-called
7
14
  middleware) into a single method call.
8
15
 
9
- The exact details of this are described in the Rack specification,
10
- which all Rack applications should conform to.
16
+ The exact details of this are described in the \Rack specification,
17
+ which all \Rack applications should conform to.
11
18
 
12
19
  == Supported web servers
13
20
 
14
- The included *handlers* connect all kinds of web servers to Rack:
15
- * WEBrick
21
+ The included *handlers* connect all kinds of web servers to \Rack:
22
+
23
+ * WEBrick[https://github.com/ruby/webrick]
16
24
  * FCGI
17
25
  * CGI
18
26
  * SCGI
19
- * LiteSpeed
20
- * Thin
21
-
22
- These web servers include Rack handlers in their distributions:
23
- * Ebb
24
- * Fuzed
25
- * Glassfish v3
26
- * Phusion Passenger (which is mod_rack for Apache and for nginx)
27
- * Puma
28
- * Reel
29
- * Unicorn
30
- * unixrack
31
- * uWSGI
32
- * yahns
33
-
34
- Any valid Rack app will run the same on all these handlers, without
27
+ * LiteSpeed[https://www.litespeedtech.com/]
28
+ * Thin[https://rubygems.org/gems/thin]
29
+
30
+ These web servers include \Rack handlers in their distributions:
31
+
32
+ * Agoo[https://github.com/ohler55/agoo]
33
+ * Falcon[https://github.com/socketry/falcon]
34
+ * Iodine[https://github.com/boazsegev/iodine]
35
+ * {NGINX Unit}[https://unit.nginx.org/]
36
+ * {Phusion Passenger}[https://www.phusionpassenger.com/] (which is mod_rack for Apache and for nginx)
37
+ * Puma[https://puma.io/]
38
+ * Unicorn[https://yhbt.net/unicorn/]
39
+ * uWSGI[https://uwsgi-docs.readthedocs.io/en/latest/]
40
+
41
+ Any valid \Rack app will run the same on all these handlers, without
35
42
  changing anything.
36
43
 
37
44
  == Supported web frameworks
38
45
 
39
- These frameworks include Rack adapters in their distributions:
40
- * Camping
41
- * Coset
42
- * Espresso
43
- * Halcyon
44
- * Mack
45
- * Maveric
46
- * Merb
47
- * Racktools::SimpleApplication
48
- * Ramaze
49
- * Ruby on Rails
50
- * Rum
51
- * Sinatra
52
- * Sin
53
- * Vintage
54
- * Waves
55
- * Wee
56
- * ... and many others.
57
-
58
- == Available middleware
59
-
60
- Between the server and the framework, Rack can be customized to your
61
- applications needs using middleware, for example:
62
- * Rack::URLMap, to route to multiple applications inside the same process.
46
+ These frameworks and many others support the \Rack API:
47
+
48
+ * Camping[http://www.ruby-camping.com/]
49
+ * Coset[http://leahneukirchen.org/repos/coset/]
50
+ * Hanami[https://hanamirb.org/]
51
+ * Padrino[http://padrinorb.com/]
52
+ * Ramaze[http://ramaze.net/]
53
+ * Roda[https://github.com/jeremyevans/roda]
54
+ * {Ruby on Rails}[https://rubyonrails.org/]
55
+ * Rum[https://github.com/leahneukirchen/rum]
56
+ * Sinatra[http://sinatrarb.com/]
57
+ * Utopia[https://github.com/socketry/utopia]
58
+ * WABuR[https://github.com/ohler55/wabur]
59
+
60
+ == Available middleware shipped with \Rack
61
+
62
+ Between the server and the framework, \Rack can be customized to your
63
+ applications needs using middleware. \Rack itself ships with the following
64
+ middleware:
65
+
66
+ * Rack::Chunked, for streaming responses using chunked encoding.
63
67
  * Rack::CommonLogger, for creating Apache-style logfiles.
68
+ * Rack::ConditionalGet, for returning not modified responses when the response
69
+ has not changed.
70
+ * Rack::Config, for modifying the environment before processing the request.
71
+ * Rack::ContentLength, for setting Content-Length header based on body size.
72
+ * Rack::ContentType, for setting default Content-Type header for responses.
73
+ * Rack::Deflater, for compressing responses with gzip.
74
+ * Rack::ETag, for setting ETag header on string bodies.
75
+ * Rack::Events, for providing easy hooks when a request is received
76
+ and when the response is sent.
77
+ * Rack::Files, for serving static files.
78
+ * Rack::Head, for returning an empty body for HEAD requests.
79
+ * Rack::Lint, for checking conformance to the \Rack API.
80
+ * Rack::Lock, for serializing requests using a mutex.
81
+ * Rack::Logger, for setting a logger to handle logging errors.
82
+ * Rack::MethodOverride, for modifying the request method based on a submitted
83
+ parameter.
84
+ * Rack::Recursive, for including data from other paths in the application,
85
+ and for performing internal redirects.
86
+ * Rack::Reloader, for reloading files if they have been modified.
87
+ * Rack::Runtime, for including a response header with the time taken to
88
+ process the request.
89
+ * Rack::Sendfile, for working with web servers that can use optimized
90
+ file serving for file system paths.
64
91
  * Rack::ShowException, for catching unhandled exceptions and
65
92
  presenting them in a nice and helpful way with clickable backtrace.
66
- * Rack::File, for serving static files.
67
- * ...many others!
93
+ * Rack::ShowStatus, for using nice error pages for empty client error
94
+ responses.
95
+ * Rack::Static, for more configurable serving of static files.
96
+ * Rack::TempfileReaper, for removing temporary files creating during a
97
+ request.
68
98
 
69
99
  All these components use the same interface, which is described in
70
- detail in the Rack specification. These optional components can be
100
+ detail in the \Rack specification. These optional components can be
71
101
  used in any way you wish.
72
102
 
73
103
  == Convenience
74
104
 
75
105
  If you want to develop outside of existing frameworks, implement your
76
- own ones, or develop middleware, Rack provides many helpers to create
77
- Rack applications quickly and without doing the same web stuff all
106
+ own ones, or develop middleware, \Rack provides many helpers to create
107
+ \Rack applications quickly and without doing the same web stuff all
78
108
  over:
109
+
79
110
  * Rack::Request, which also provides query string parsing and
80
111
  multipart handling.
81
112
  * Rack::Response, for convenient generation of HTTP replies and
82
113
  cookie handling.
83
114
  * Rack::MockRequest and Rack::MockResponse for efficient and quick
84
- testing of Rack application without real HTTP round-trips.
115
+ testing of \Rack application without real HTTP round-trips.
116
+ * Rack::Cascade, for trying additional \Rack applications if an
117
+ application returns a not found or method not supported response.
118
+ * Rack::Directory, for serving files under a given directory, with
119
+ directory indexes.
120
+ * Rack::MediaType, for parsing Content-Type headers.
121
+ * Rack::Mime, for determining Content-Type based on file extension.
122
+ * Rack::RewindableInput, for making any IO object rewindable, using
123
+ a temporary file buffer.
124
+ * Rack::URLMap, to route to multiple applications inside the same process.
85
125
 
86
126
  == rack-contrib
87
127
 
88
128
  The plethora of useful middleware created the need for a project that
89
- collects fresh Rack middleware. rack-contrib includes a variety of
90
- add-on components for Rack and it is easy to contribute new modules.
129
+ collects fresh \Rack middleware. rack-contrib includes a variety of
130
+ add-on components for \Rack and it is easy to contribute new modules.
91
131
 
92
132
  * https://github.com/rack/rack-contrib
93
133
 
94
134
  == rackup
95
135
 
96
- rackup is a useful tool for running Rack applications, which uses the
136
+ rackup is a useful tool for running \Rack applications, which uses the
97
137
  Rack::Builder DSL to configure middleware and build up applications
98
138
  easily.
99
139
 
@@ -117,145 +157,113 @@ By default, the lobster is found at http://localhost:9292.
117
157
 
118
158
  == Installing with RubyGems
119
159
 
120
- A Gem of Rack is available at rubygems.org. You can install it with:
160
+ A Gem of \Rack is available at {rubygems.org}[https://rubygems.org/gems/rack]. You can install it with:
121
161
 
122
162
  gem install rack
123
163
 
124
- I also provide a local mirror of the gems (and development snapshots)
125
- at my site:
164
+ == Usage
126
165
 
127
- gem install rack --source http://chneukirchen.org/releases/gems/
166
+ You should require the library:
128
167
 
129
- == Running the tests
168
+ require 'rack'
130
169
 
131
- Testing Rack requires the bacon testing framework:
170
+ \Rack uses autoload to automatically load other files \Rack ships with on demand,
171
+ so you should not need require paths under +rack+. If you require paths under
172
+ +rack+ without requiring +rack+ itself, things may not work correctly.
132
173
 
133
- bundle install --without extra # to be able to run the fast tests
134
-
135
- Or:
136
-
137
- bundle install # this assumes that you have installed native extensions!
138
-
139
- There is a rake-based test task:
140
-
141
- rake test tests all the tests
142
-
143
- The testsuite has no dependencies outside of the core Ruby
144
- installation and bacon.
174
+ == Configuration
145
175
 
146
- To run the test suite completely, you need:
176
+ Several parameters can be modified on Rack::Utils to configure \Rack behaviour.
147
177
 
148
- * fcgi
149
- * memcache-client
150
- * thin
178
+ e.g:
151
179
 
152
- The full set of tests test FCGI access with lighttpd (on port
153
- 9203) so you will need lighttpd installed as well as the FCGI
154
- libraries and the fcgi gem:
180
+ Rack::Utils.key_space_limit = 128
155
181
 
156
- Download and install lighttpd:
182
+ === key_space_limit
157
183
 
158
- http://www.lighttpd.net/download
184
+ The default number of bytes to allow all parameters keys in a given parameter hash to take up.
185
+ Does not affect nested parameter hashes, so doesn't actually prevent an attacker from using
186
+ more than this many bytes for parameter keys.
159
187
 
160
- Installing the FCGI libraries:
188
+ Defaults to 65536 characters.
161
189
 
162
- curl -O http://www.fastcgi.com/dist/fcgi-2.4.0.tar.gz
163
- tar xzvf fcgi-2.4.0.tar.gz
164
- cd fcgi-2.4.0
165
- ./configure --prefix=/usr/local
166
- make
167
- sudo make install
168
- cd ..
190
+ === param_depth_limit
169
191
 
170
- Installing the Ruby fcgi gem:
192
+ The maximum amount of nesting allowed in parameters.
193
+ For example, if set to 3, this query string would be allowed:
171
194
 
172
- gem install fcgi
195
+ ?a[b][c]=d
173
196
 
174
- Furthermore, to test Memcache sessions, you need memcached (will be
175
- run on port 11211) and memcache-client installed.
197
+ but this query string would not be allowed:
176
198
 
177
- == Configuration
199
+ ?a[b][c][d]=e
178
200
 
179
- Several parameters can be modified on Rack::Utils to configure Rack behaviour.
201
+ Limiting the depth prevents a possible stack overflow when parsing parameters.
180
202
 
181
- e.g:
203
+ Defaults to 100.
182
204
 
183
- Rack::Utils.key_space_limit = 128
205
+ === multipart_part_limit
184
206
 
185
- === key_space_limit
186
-
187
- The default number of bytes to allow a single parameter key to take up.
188
- This helps prevent a rogue client from flooding a Request.
189
-
190
- Default to 65536 characters (4 kiB in worst case).
191
-
192
- === multipart_file_limit
193
-
194
- The maximum number of parts with a filename a request can contain.
207
+ The maximum number of parts a request can contain.
195
208
  Accepting too many part can lead to the server running out of file handles.
196
209
 
197
210
  The default is 128, which means that a single request can't upload more than 128 files at once.
198
211
 
199
212
  Set to 0 for no limit.
200
213
 
201
- Can also be set via the +RACK_MULTIPART_FILE_LIMIT+ environment variable.
214
+ Can also be set via the +RACK_MULTIPART_PART_LIMIT+ environment variable.
202
215
 
203
- (This is also aliased as +multipart_part_limit+ and +RACK_MULTIPART_PART_LIMIT+ for compatibility)
216
+ == Changelog
204
217
 
205
- === multipart_total_part_limit
218
+ See {CHANGELOG.md}[https://github.com/rack/rack/blob/master/CHANGELOG.md].
206
219
 
207
- The maximum total number of parts a request can contain of any type, including
208
- both file and non-file form fields.
209
-
210
- The default is 4096, which means that a single request can't contain more than
211
- 4096 parts.
212
-
213
- Set to 0 for no limit.
220
+ == Contributing
214
221
 
215
- Can also be set via the +RACK_MULTIPART_TOTAL_PART_LIMIT+ environment variable.
216
-
217
- == History
218
-
219
- See <https://github.com/rack/rack/blob/master/HISTORY.md>.
222
+ See {CONTRIBUTING.md}[https://github.com/rack/rack/blob/master/CONTRIBUTING.md].
220
223
 
221
224
  == Contact
222
225
 
223
226
  Please post bugs, suggestions and patches to
224
- the bug tracker at <https://github.com/rack/rack/issues>.
227
+ the bug tracker at {issues}[https://github.com/rack/rack/issues].
225
228
 
226
229
  Please post security related bugs and suggestions to the core team at
227
- <https://groups.google.com/group/rack-core> or rack-core@googlegroups.com. This
230
+ <https://groups.google.com/forum/#!forum/rack-core> or rack-core@googlegroups.com. This
228
231
  list is not public. Due to wide usage of the library, it is strongly preferred
229
232
  that we manage timing in order to provide viable patches at the time of
230
233
  disclosure. Your assistance in this matter is greatly appreciated.
231
234
 
232
235
  Mailing list archives are available at
233
- <https://groups.google.com/group/rack-devel>.
236
+ <https://groups.google.com/forum/#!forum/rack-devel>.
234
237
 
235
238
  Git repository (send Git patches to the mailing list):
239
+
236
240
  * https://github.com/rack/rack
237
- * http://git.vuxu.org/cgi-bin/gitweb.cgi?p=rack-github.git
238
241
 
239
242
  You are also welcome to join the #rack channel on irc.freenode.net.
240
243
 
241
244
  == Thanks
242
245
 
243
- The Rack Core Team, consisting of
246
+ The \Rack Core Team, consisting of
247
+
248
+ * Aaron Patterson (tenderlove[https://github.com/tenderlove])
249
+ * Samuel Williams (ioquatix[https://github.com/ioquatix])
250
+ * Jeremy Evans (jeremyevans[https://github.com/jeremyevans])
251
+ * Eileen Uchitelle (eileencodes[https://github.com/eileencodes])
252
+ * Matthew Draper (matthewd[https://github.com/matthewd])
253
+ * Rafael França (rafaelfranca[https://github.com/rafaelfranca])
254
+
255
+ and the \Rack Alumni
244
256
 
245
- * Leah Neukirchen (chneukirchen[https://github.com/chneukirchen])
257
+ * Ryan Tomayko (rtomayko[https://github.com/rtomayko])
258
+ * Scytrin dai Kinthra (scytrin[https://github.com/scytrin])
259
+ * Leah Neukirchen (leahneukirchen[https://github.com/leahneukirchen])
246
260
  * James Tucker (raggi[https://github.com/raggi])
247
261
  * Josh Peek (josh[https://github.com/josh])
248
262
  * José Valim (josevalim[https://github.com/josevalim])
249
263
  * Michael Fellinger (manveru[https://github.com/manveru])
250
- * Aaron Patterson (tenderlove[https://github.com/tenderlove])
251
264
  * Santiago Pastorino (spastorino[https://github.com/spastorino])
252
265
  * Konstantin Haase (rkh[https://github.com/rkh])
253
266
 
254
- and the Rack Alumnis
255
-
256
- * Ryan Tomayko (rtomayko[https://github.com/rtomayko])
257
- * Scytrin dai Kinthra (scytrin[https://github.com/scytrin])
258
-
259
267
  would like to thank:
260
268
 
261
269
  * Adrian Madrid, for the LiteSpeed handler.
@@ -283,34 +291,16 @@ would like to thank:
283
291
  * Alexander Kellett for testing the Gem and reviewing the announcement.
284
292
  * Marcus Rückert, for help with configuring and debugging lighttpd.
285
293
  * The WSGI team for the well-done and documented work they've done and
286
- Rack builds up on.
294
+ \Rack builds up on.
287
295
  * All bug reporters and patch contributors not mentioned above.
288
296
 
289
- == Copyright
290
-
291
- Copyright (C) 2007, 2008, 2009, 2010 Christian Neukirchen <http://purl.org/net/chneukirchen>
292
-
293
- Permission is hereby granted, free of charge, to any person obtaining a copy
294
- of this software and associated documentation files (the "Software"), to
295
- deal in the Software without restriction, including without limitation the
296
- rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
297
- sell copies of the Software, and to permit persons to whom the Software is
298
- furnished to do so, subject to the following conditions:
299
-
300
- The above copyright notice and this permission notice shall be included in
301
- all copies or substantial portions of the Software.
297
+ == Links
302
298
 
303
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
304
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
305
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
306
- THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
307
- IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
308
- CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
299
+ \Rack:: <https://rack.github.io/>
300
+ Official \Rack repositories:: <https://github.com/rack>
301
+ \Rack Bug Tracking:: <https://github.com/rack/rack/issues>
302
+ rack-devel mailing list:: <https://groups.google.com/forum/#!forum/rack-devel>
309
303
 
310
- == Links
304
+ == License
311
305
 
312
- Rack:: <https://rack.github.io/>
313
- Official Rack repositories:: <https://github.com/rack>
314
- Rack Bug Tracking:: <https://github.com/rack/rack/issues>
315
- rack-devel mailing list:: <https://groups.google.com/group/rack-devel>
316
- Rack's Rubyforge project:: <http://rubyforge.org/projects/rack>
306
+ \Rack is released under the {MIT License}[https://opensource.org/licenses/MIT].