jruby-rack 1.0.7 → 1.0.8
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +11 -0
- data/README.md +2 -0
- data/lib/{jruby-rack-1.0.7.jar → jruby-rack-1.0.8.jar} +0 -0
- data/lib/jruby/rack/version.rb +1 -1
- metadata +3 -3
data/History.txt
CHANGED
@@ -1,3 +1,14 @@
|
|
1
|
+
== 1.0.8
|
2
|
+
|
3
|
+
- Add a check for /config.ru if not found in /WEB-INF (for appengine gem)
|
4
|
+
- Modify LocalContext to support minimal LocalConfig for JMS (Garret Conaty)
|
5
|
+
- JRUBY-5573: Add support for log4j
|
6
|
+
- Process RUBYOPT variable if it's set
|
7
|
+
- Change application factory to use ScriptingContainer API for
|
8
|
+
creating runtimes
|
9
|
+
- Upgrade to Rack 1.2.2
|
10
|
+
- GH#21: Implement RackInput#size
|
11
|
+
|
1
12
|
== 1.0.7
|
2
13
|
|
3
14
|
- JRUBY_RACK-36: Always set env['HTTPS'] according to request.getScheme
|
data/README.md
CHANGED
@@ -207,6 +207,8 @@ follows:
|
|
207
207
|
still need to configure commons-logging with additional details.
|
208
208
|
- `slf4j`: Sends log messages to SLF4J. Again, SLF4J configuration is
|
209
209
|
left up to you.
|
210
|
+
- `log4j`: Sends log messages to log4J. Again, log4J configuration is
|
211
|
+
left up to you.
|
210
212
|
|
211
213
|
For those loggers that require a specific named logger, set it in the
|
212
214
|
`jruby.rack.logging.name` option.
|
Binary file
|
data/lib/jruby/rack/version.rb
CHANGED
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.
|
5
|
+
version: 1.0.8
|
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-03-
|
13
|
+
date: 2011-03-23 00:00:00 -05: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.
|
30
|
+
- lib/jruby-rack-1.0.8.jar
|
31
31
|
- lib/jruby-rack.rb
|
32
32
|
- lib/jruby/rack/version.rb
|
33
33
|
has_rdoc: true
|