jruby-rack 1.1.19 → 1.1.20
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.
- checksums.yaml +4 -4
- data/History.md +11 -1
- data/LICENSE.txt +1 -1
- data/lib/{jruby-rack-1.1.19.jar → jruby-rack-1.1.20.jar} +0 -0
- data/lib/jruby-rack.rb +1 -1
- data/lib/jruby/rack/version.rb +2 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9d438c0f4574f6acadee741826657109d9fd2863
|
4
|
+
data.tar.gz: cc798501450350fb024f10b76617b1d7061445bd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1aebb410f330e811d8aa1935653a086a262627e30773d1c8a1f9f9a15142d84edad4e0a701c8ec01dc9b816a542a8d1edbb46164067615304f67711e84abf334
|
7
|
+
data.tar.gz: c9ed2c9f0739fc992b253eb966bde7f208a744e92055393deb7329f584430cf49f5ec2181d1e7798a8a8b1428214c8f15f97ef2044077a666298b771c5565cd3
|
data/History.md
CHANGED
@@ -1,4 +1,14 @@
|
|
1
|
-
## 1.1.
|
1
|
+
## 1.1.20 (22/01/16)
|
2
|
+
|
3
|
+
- pre-maturely avoid Ruby frozen string literals coming at us ... ''.dup meh!
|
4
|
+
- allow to boot when RAILS_ROOT/public directory does not exist (closes #197)
|
5
|
+
- for better booter detection - export public path after working dir was changed
|
6
|
+
- `ActionController::Base` provides a method `servlet_response` to return the
|
7
|
+
`java.servlet_response` rack env (#201)
|
8
|
+
- adjust jruby home dir fallback (for default $LOAD_PATH) correctly on 9K and --2.0
|
9
|
+
- servlet env should behave on `fetch` and `[]` like a Hash (nil value can be set)
|
10
|
+
|
11
|
+
## 1.1.19 (01/07/15)
|
2
12
|
|
3
13
|
- update (bundled) rack to 1.5.5
|
4
14
|
- servlet attrs with null/false values should not end up with an '' env value (#195)
|
data/LICENSE.txt
CHANGED
Binary file
|
data/lib/jruby-rack.rb
CHANGED
data/lib/jruby/rack/version.rb
CHANGED
@@ -1,4 +1,5 @@
|
|
1
1
|
#--
|
2
|
+
# Copyright (c) 2012-2016 Karol Bucek, LTD.
|
2
3
|
# Copyright (c) 2010-2012 Engine Yard, Inc.
|
3
4
|
# Copyright (c) 2007-2009 Sun Microsystems, Inc.
|
4
5
|
# This source code is available under the MIT license.
|
@@ -7,6 +8,6 @@
|
|
7
8
|
|
8
9
|
module JRuby
|
9
10
|
module Rack
|
10
|
-
VERSION = '1.1.
|
11
|
+
VERSION = '1.1.20'
|
11
12
|
end
|
12
13
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jruby-rack
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.20
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nick Sieger
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2016-01-22 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: JRuby-Rack is a combined Java and Ruby library that adapts the Java Servlet API to Rack. For JRuby only.
|
14
14
|
email:
|
@@ -20,7 +20,7 @@ files:
|
|
20
20
|
- History.md
|
21
21
|
- LICENSE.txt
|
22
22
|
- README.md
|
23
|
-
- lib/jruby-rack-1.1.
|
23
|
+
- lib/jruby-rack-1.1.20.jar
|
24
24
|
- lib/jruby-rack.rb
|
25
25
|
- lib/jruby/rack/version.rb
|
26
26
|
homepage: http://jruby.org
|
@@ -43,7 +43,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
43
43
|
version: '0'
|
44
44
|
requirements: []
|
45
45
|
rubyforge_project:
|
46
|
-
rubygems_version: 2.4.
|
46
|
+
rubygems_version: 2.4.8
|
47
47
|
signing_key:
|
48
48
|
specification_version: 4
|
49
49
|
summary: Rack adapter for JRuby and Servlet Containers
|