@@ -179,8 +179,10 @@ as context init parameters in web.xml or as VM-wide system properties.
179
179
` servlet_context ` . See below.
180
180
- ` jruby.rack.ignore.env ` : Clears out the ` ENV ` hash in each runtime to insulate
181
181
the application from the environment.
182
- - ` jruby.rack.background.spool ` : (EXPERIMENTAL) Enable large request
183
- bodies to be spooled to a tempfile in the background.
182
+ - ` jruby.rack.request.size.initial.bytes ` : Initial size for request body memory
183
+ buffer, see also ` jruby.rack.request.size.maximum.bytes ` bellow.
184
+ - ` jruby.rack.request.size.maximum.bytes ` : The maximum size for the request in
185
+ memory buffer, if the body is larger than this it gets spooled to a tempfile.
184
186
- ` jruby.rack.filter.adds.html ` :
185
187
** deprecated** use ` addsHtmlToPathInfo ` filter config init parameter.
186
188
The default behavior for Rails and many other Ruby applications is to add an
@@ -252,19 +254,18 @@ Please use GitHub to file bugs, patches and pull requests.
252
254
For JRuby-Rack contributors, the release process goes something like
253
255
the following:
254
256
255
- 1 . Ensure that release version is correct in pom.xml and ` mvn install `
257
+ 1 . Ensure that release version is correct in _ pom.xml _ and ` mvn install `
256
258
runs clean.
257
- 2 . Ensure generated changes to src /main/ruby/jruby/rack/version.rb are
259
+ 2 . Ensure generated changes to _ src /main/ruby/jruby/rack/version.rb _ are
258
260
checked in.
259
- 3 . Ensure History.txt is updated with latest release information.
261
+ 3 . Ensure _ History.txt _ is updated with latest release information.
260
262
3 . Tag current release in git: ` git tag <version> ` .
261
263
4 . Push commits and tag: ` git push origin master --tags `
262
264
5 . Build gem: ` rake clean gem `
263
265
6 . Push gem: ` gem push target/jruby-rack-*.gem `
264
266
7 . Release jar to maven repository: ` mvn -DupdateReleaseInfo=true deploy `
265
- 8 . Bump the version in pom.xml to the
266
- ` <next-release-version>.dev-SNAPSHOT ` , run ` mvn install ` , and commit
267
- the changes.
267
+ 8 . Bump the version in _ pom.xml_ to next release version * X.X.X.dev-SNAPSHOT* ,
268
+ run ` mvn install ` , and commit the changes.
268
269
269
270
## Rails Step-by-step
270
271
0 commit comments