jruby-rack 1.0.6 → 1.0.7

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt CHANGED
@@ -1,3 +1,13 @@
1
+ == 1.0.7
2
+
3
+ - JRUBY_RACK-36: Always set env['HTTPS'] according to request.getScheme
4
+ - GH#10: Add `jruby.rack.ignore.env` property which clears out the ENV
5
+ hash in each runtime to insulate the application from the environment.
6
+ - GH#12: Another fix to suppress client abort exceptions
7
+ - GH#14: Remove trailing slash from jruby.home
8
+ - GH#15: Fix infinite redirect issue with Winstone
9
+ - GH#17: __FILE__ constant inside config.ru is not absolute
10
+
1
11
  == 1.0.6 (01/20/11)
2
12
 
3
13
  - GH#4: Related to JRUBY-5281 and spaces in the path. Copy jruby.home
data/README.md CHANGED
@@ -181,13 +181,16 @@ as context init parameters in web.xml or as VM-wide system properties.
181
181
  many other Ruby applications is to add an .html extension to the
182
182
  resource and attempt to handle it before serving a dynamic request
183
183
  on the original URI. However, this behavior may confuse other
184
- servlets in your application that have a wildcard mapping. Defaults to true.
184
+ servlets in your application that have a wildcard mapping. Defaults
185
+ to true.
185
186
  - `jruby.rack.filter.verify.resource.exists`: If
186
187
  `jruby.rack.filter.adds.html` is true, then this setting, when true,
187
188
  adds an additional check using `ServletContext#getResource` to
188
189
  verify that the .html resource exists. Default is false. (Note that
189
190
  apparently some servers may not implement `getResource` in the way
190
191
  that is expected here, so in that case this setting won't matter.)
192
+ - `jruby.rack.ignore.env`: Clears out the ENV hash in each runtime to
193
+ insulate the application from the environment.
191
194
 
192
195
  ## Logging
193
196
 
@@ -7,6 +7,6 @@
7
7
 
8
8
  module JRuby
9
9
  module Rack
10
- VERSION = "1.0.6"
10
+ VERSION = "1.0.7"
11
11
  end
12
12
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: jruby-rack
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 1.0.6
5
+ version: 1.0.7
6
6
  platform: ruby
7
7
  authors:
8
8
  - Nick Sieger
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2011-02-11 00:00:00 -06:00
13
+ date: 2011-03-04 00:00:00 -06:00
14
14
  default_executable:
15
15
  dependencies: []
16
16
 
@@ -27,7 +27,7 @@ files:
27
27
  - History.txt
28
28
  - LICENSE.txt
29
29
  - README.md
30
- - lib/jruby-rack-1.0.6.jar
30
+ - lib/jruby-rack-1.0.7.jar
31
31
  - lib/jruby-rack.rb
32
32
  - lib/jruby/rack/version.rb
33
33
  has_rdoc: true