jruby-rack 1.1.19 → 1.1.20

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6633d18b12cd09a1057b8c669e4c5543748bb579
4
- data.tar.gz: 4690c67eaa1a73e00e7005df604ebfa1e88e1f3a
3
+ metadata.gz: 9d438c0f4574f6acadee741826657109d9fd2863
4
+ data.tar.gz: cc798501450350fb024f10b76617b1d7061445bd
5
5
  SHA512:
6
- metadata.gz: e0bbef2f73c8ddfff57d8cd12ff3afcb6131fe5f25ea45ef676e2ebedc1bf6fbb1a0c1ea8f4721613d8b04d10054310186be458becdb09d8cbae3319414a856d
7
- data.tar.gz: ce7a3bea2285e274ba10ec23dcd55d9f552e7e4a98d7f6ff578ff62e75911e4ecc1b0f35f2ce4be0f8f9ffecbcfa217131e47a9653af023dfa2f36042ae85f9c
6
+ metadata.gz: 1aebb410f330e811d8aa1935653a086a262627e30773d1c8a1f9f9a15142d84edad4e0a701c8ec01dc9b816a542a8d1edbb46164067615304f67711e84abf334
7
+ data.tar.gz: c9ed2c9f0739fc992b253eb966bde7f208a744e92055393deb7329f584430cf49f5ec2181d1e7798a8a8b1428214c8f15f97ef2044077a666298b771c5565cd3
data/History.md CHANGED
@@ -1,4 +1,14 @@
1
- ## 1.1.19 (30/06/15)
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)
@@ -1,7 +1,7 @@
1
1
  #--
2
2
  # The MIT License
3
3
  #
4
- # Copyright (c) 2012-2014 Karol Bucek, LTD
4
+ # Copyright (c) 2012-2016 Karol Bucek, LTD.
5
5
  # Copyright (c) 2010-2012 Engine Yard, Inc.
6
6
  # Copyright (c) 2007-2009 Sun Microsystems, Inc.
7
7
  #
@@ -1,7 +1,7 @@
1
1
 
2
2
  module JRubyJars
3
3
  def self.jruby_rack_jar_path
4
- File.expand_path("../jruby-rack-1.1.19.jar", __FILE__)
4
+ File.expand_path("../jruby-rack-1.1.20.jar", __FILE__)
5
5
  end
6
6
  require jruby_rack_jar_path if defined?(JRUBY_VERSION)
7
7
  end
@@ -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.19'
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.19
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: 2015-07-01 00:00:00.000000000 Z
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.19.jar
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.5
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