jruby-rack 0.9.7 → 0.9.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/History.txt CHANGED
@@ -1,3 +1,35 @@
1
+ == 0.9.8
2
+
3
+ - Look for config.ru in either WEB-INF/config.ru or
4
+ WEB-INF/*/config.ru and use it for racking up the application.
5
+ 'rackup' context parameter is still supported for embedding in
6
+ web.xml too.
7
+ - JRUBY_RACK-21: Add logging adapter classes for commons-logging and
8
+ slf4j. If you use either of these logging frameworks in your app,
9
+ simply set 'jruby.rack.logging' to 'clogging' or 'slf4j' in either
10
+ web.xml as a context parameter or as a system property to pipe Ruby
11
+ logs through those frameworks (h/t jcantrill).
12
+ - Fix bug with RackRewindableInput#read(N) -- should return nil when finished
13
+ - Fix Rails 3 logger configuration
14
+ - Only load vendor/rack if Rack is not already loaded
15
+
16
+ == 0.9.7
17
+
18
+ - Rails 3 support
19
+ - Fix "overrides final method getRuntime" error due to 1.5 Java class
20
+ generation changes
21
+ - Upgrade to Rack 1.1.0
22
+ - Upgrade to servlet 2.5 and jsp 2.1
23
+ - Fix SCRIPT_NAME/PATH_INFO overlap issue with context paths (seen on
24
+ GAE and elsewhere)
25
+ - JRUBY_RACK-8: adjust LOAD_PATH if jruby_home detection failed in the current environment
26
+ - JRUBY_RACK-23: JavaServletStore needs to be required before it can be set as the session store
27
+ - JRUBY_RACK-26: Rack crashes on multipart/form-data bodies submitted with curl (or other headless client)
28
+ - JRUBY_RACK-27: Rails.public_path has a trailing /
29
+ - JRUBY_RACK-29: Incorrectly Bundling jruby-rack-0.0.7.SNAPSHOT.jar
30
+ - JRUBY_RACK-19: Add a jruby-rack gem for finding the jar file
31
+ - JRUBY_RACK-24: Support non-war deployment of Rails apps
32
+
1
33
  == 0.9.6
2
34
 
3
35
  - JRUBY_RACK-22: Ensure we call #close on the body per the Rack spec.
Binary file
@@ -7,6 +7,6 @@
7
7
 
8
8
  module JRuby
9
9
  module Rack
10
- VERSION = "0.9.7"
10
+ VERSION = "0.9.8"
11
11
  end
12
12
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 9
8
- - 7
9
- version: 0.9.7
8
+ - 8
9
+ version: 0.9.8
10
10
  platform: ruby
11
11
  authors:
12
12
  - Nick Sieger
@@ -14,7 +14,7 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2010-04-05 00:00:00 -05:00
17
+ date: 2010-05-13 00:00:00 -05:00
18
18
  default_executable:
19
19
  dependencies: []
20
20
 
@@ -31,7 +31,7 @@ files:
31
31
  - ./History.txt
32
32
  - ./LICENSE.txt
33
33
  - ./README.md
34
- - ./lib/jruby-rack-0.9.7.jar
34
+ - ./lib/jruby-rack-0.9.8.jar
35
35
  - ./lib/jruby-rack.rb
36
36
  - ./lib/jruby/rack/version.rb
37
37
  has_rdoc: true
Binary file