jruby-rack 1.1.6 → 1.1.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,11 @@
1
+ == 1.1.7 (21/06/12)
2
+
3
+ - support for delegating logs to java.util.logging (jruby.rack.logging: JUL)
4
+ - extend RackLogger with levels for better logging with underlying log impl
5
+ - consider 405 as an unhandled response from filter chain by default (#109)
6
+ - make sure optimized file streaming gets used with rails send_file, this serves
7
+ as a work-around for a --1.9 bug in jruby-1.6.7 with string encoding (#107)
8
+
1
9
  == 1.1.6 (16/05/12)
2
10
 
3
11
  - consider 403 as an unhandled response from filter chain (along with 404) and
data/README.md CHANGED
@@ -214,15 +214,17 @@ logging system, configure `jruby.rack.logging` as follows:
214
214
 
215
215
  - `servlet_context` (default): Sends log messages to the servlet context.
216
216
  - `stdout`: Sends log messages to the standard output stream `System.out`.
217
- - `commons_logging`: Sends log messages to Apache commons-logging. You
218
- still need to configure commons-logging with additional details.
219
- - `slf4j`: Sends log messages to SLF4J. Again, SLF4J configuration is
220
- left up to you.
217
+ - `slf4j`: Sends log messages to SLF4J. SLF4J configuration is left up to you,
218
+ please refer to http://www.slf4j.org/docs.html .
221
219
  - `log4j`: Sends log messages to log4J. Again, Log4J configuration is
222
- left up to you.
223
-
224
- For those loggers that require a specific named logger, set it in the
225
- `jruby.rack.logging.name` option.
220
+ left up to you, consult http://logging.apache.org/log4j/ .
221
+ - `commons_logging`: Routes logs to commons-logging. You still need to configure
222
+ an underlying logging implementation with JCL. We recommend using the logger
223
+ library wrapper directly if possible, see http://commons.apache.org/logging/ .
224
+ - `jul`: Directs log messages via Java's core logging facilities (util.logging).
225
+
226
+ For those loggers that require a specific named logger, set it with the
227
+ `jruby.rack.logging.name` option, by default "jruby.rack" name will be used.
226
228
 
227
229
  # Building
228
230
 
@@ -7,6 +7,6 @@
7
7
 
8
8
  module JRuby
9
9
  module Rack
10
- VERSION = "1.1.6"
10
+ VERSION = "1.1.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.1.6
5
+ version: 1.1.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: 2012-05-16 00:00:00 Z
13
+ date: 2012-06-21 00:00:00 Z
14
14
  dependencies: []
15
15
 
16
16
  description: JRuby-Rack is a combined Java and Ruby library that adapts the Java Servlet API to Rack. For JRuby only.
@@ -27,7 +27,7 @@ files:
27
27
  - LICENSE.txt
28
28
  - History.txt
29
29
  - lib/jruby-rack.rb
30
- - lib/jruby-rack-1.1.6.jar
30
+ - lib/jruby-rack-1.1.7.jar
31
31
  - lib/jruby/rack/version.rb
32
32
  homepage: http://jruby.org
33
33
  licenses: []