Skip to content

Commit b36a81b

Browse files
committed
jruby.rack.background.spool no longer exists
1 parent 51a979a commit b36a81b

File tree

2 files changed

+13
-12
lines changed

2 files changed

+13
-12
lines changed

.gitignore

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ examples/*/tmp
77
examples/*/work
88
examples/*/*.war
99
examples/*/nbproject
10-
nbproject/private/*
10+
.rakeTasks
1111
.redcar
12-
/.rakeTasks
13-
14-
.idea/
12+
nbproject
13+
.idea/
14+
.rvmrc

README.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -179,8 +179,10 @@ as context init parameters in web.xml or as VM-wide system properties.
179179
`servlet_context`. See below.
180180
- `jruby.rack.ignore.env`: Clears out the `ENV` hash in each runtime to insulate
181181
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.
184186
- `jruby.rack.filter.adds.html`:
185187
**deprecated** use `addsHtmlToPathInfo` filter config init parameter.
186188
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.
252254
For JRuby-Rack contributors, the release process goes something like
253255
the following:
254256

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`
256258
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
258260
checked in.
259-
3. Ensure History.txt is updated with latest release information.
261+
3. Ensure _History.txt_ is updated with latest release information.
260262
3. Tag current release in git: `git tag <version>`.
261263
4. Push commits and tag: `git push origin master --tags`
262264
5. Build gem: `rake clean gem`
263265
6. Push gem: `gem push target/jruby-rack-*.gem`
264266
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.
268269

269270
## Rails Step-by-step
270271

0 commit comments

Comments
 (0)