jruby-rack 1.1.12 → 1.1.13.1
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 +20 -0
- data/README.md +5 -2
- data/lib/{jruby-rack-1.1.12.jar → jruby-rack-1.1.13.1.jar} +0 -0
- data/lib/jruby-rack.rb +3 -2
- data/lib/jruby/rack/version.rb +1 -1
- metadata +3 -3
data/History.txt
CHANGED
@@ -1,3 +1,23 @@
|
|
1
|
+
== 1.1.13.1 (14/01/13)
|
2
|
+
|
3
|
+
- fix missing explicit require 'jruby/rack/version' in 1.1.13
|
4
|
+
|
5
|
+
== 1.1.13 (13/01/13)
|
6
|
+
|
7
|
+
- make sure (body) Java channel is always closed on Response#write_body
|
8
|
+
- deal with capture backtrace incompatibility on JRuby 1.7 (#139)
|
9
|
+
- bundle (latest) rack 1.4.2
|
10
|
+
- make sure out custom (env) Hash sub-classes behave more Hash-y (#134)
|
11
|
+
- support for setting a custom JRuby-Rack Response class (e.g. due #send_file)
|
12
|
+
- explicit support for sending file bodies with the possibility to re-define
|
13
|
+
#send_file per app-server
|
14
|
+
- make sure we still maintain 2.3 compatibility (fix for #138)
|
15
|
+
- fix send_file not being able to handle large > 2GB files (#133)
|
16
|
+
- review chunked support - changed default behavior into patching Rack::Chunked
|
17
|
+
the old behavior still works by setting jruby.rack.response.chunked = true
|
18
|
+
- handle empty (null) strings when parsing (Ruby) magic comments e.g. config.ru
|
19
|
+
- versioning review - make sure versions are always "valid" even for SNAPSHOTs
|
20
|
+
|
1
21
|
== 1.1.12 (28/11/12)
|
2
22
|
|
3
23
|
- make (Default)Env to be the environment Hash instance itself since we need
|
data/README.md
CHANGED
@@ -290,6 +290,7 @@ logging system, configure `jruby.rack.logging` as follows:
|
|
290
290
|
For those loggers that require a specific named logger, set it with the
|
291
291
|
`jruby.rack.logging.name` option, by default "jruby.rack" name will be used.
|
292
292
|
|
293
|
+
|
293
294
|
## Building
|
294
295
|
|
295
296
|
Checkout the JRuby-Rack code using [git](http://git-scm.com/) :
|
@@ -316,12 +317,14 @@ is compiled and generated on-demand during the build (it would require us to
|
|
316
317
|
package and push the .jar every time a commit changes a source file).
|
317
318
|
|
318
319
|
|
319
|
-
##
|
320
|
+
## Support
|
320
321
|
|
321
322
|
Please use [github][4] to file bugs, patches and pull requests.
|
322
|
-
|
323
323
|
More information at the [wiki][5] or ask us at the #jruby IRC channel.
|
324
324
|
|
325
|
+
If you need more help (e.g. migrating your application to JRuby/JRuby-Rack)
|
326
|
+
feel free to contact the current [maintainer](https://github.com/kares).
|
327
|
+
|
325
328
|
[0]: https://secure.travis-ci.org/jruby/jruby-rack.png?branch=master
|
326
329
|
[1]: http://caldersphere.rubyforge.org/warbler
|
327
330
|
[2]: http://repository.codehaus.org/org/jruby/rack/jruby-rack/
|
Binary file
|
data/lib/jruby-rack.rb
CHANGED
@@ -1,7 +1,8 @@
|
|
1
|
-
|
1
|
+
|
2
2
|
module JRubyJars
|
3
3
|
def self.jruby_rack_jar_path
|
4
|
-
File.expand_path("../jruby-rack
|
4
|
+
File.expand_path("../jruby-rack-1.1.13.1.jar", __FILE__)
|
5
5
|
end
|
6
6
|
require jruby_rack_jar_path if defined?(JRUBY_VERSION)
|
7
7
|
end
|
8
|
+
require 'jruby/rack/version' # @deprecated to be removed in 1.2
|
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.1.
|
5
|
+
version: 1.1.13.1
|
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:
|
13
|
+
date: 2013-01-14 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.
|
@@ -26,7 +26,7 @@ files:
|
|
26
26
|
- History.txt
|
27
27
|
- LICENSE.txt
|
28
28
|
- README.md
|
29
|
-
- lib/jruby-rack-1.1.
|
29
|
+
- lib/jruby-rack-1.1.13.1.jar
|
30
30
|
- lib/jruby-rack.rb
|
31
31
|
- lib/jruby/rack/version.rb
|
32
32
|
homepage: http://jruby.org
|