jruby-rack 1.1.16 → 1.1.17

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 4e9f29b0f32ad8675dac61389ac298e8ef94aa5f
4
+ data.tar.gz: 80945a497c477f4bf29553d25eb0b4a2c9484dd6
5
+ SHA512:
6
+ metadata.gz: 9950b4dca7e534b37683da4924b87f6a6167eb742b3c1b038e1110529ba6c4308aeb76916723cd9d6167ad221890fb452c0831cc70b51d708972aaa4901d4519
7
+ data.tar.gz: 266f1c32b1ba05d7abce712b7a4ed0ad37f55c4683ae1e78c14c7ed78c23c6efa63bc69356a438d75a09cb1823753a9b20ce20360a9e82edeb598c07acc09734
data/History.md CHANGED
@@ -1,3 +1,13 @@
1
+ ## 1.1.17 (30/12/14)
2
+
3
+ This release changes deployment from codehaus.org to oss.sonatype.org for artifacts.
4
+
5
+ - just keep the jruby-home when set by jruby to "uri:classsloader:..." JRuby 9k
6
+ - support configuration of `Response.swallow_client_abort?` (#186)
7
+ - better client EOF (socket abort "Broken pipe") detection in Response
8
+ we're now "officially" handling Jetty and maybe a bunch of others
9
+ - allow PATCH verb to be processed by the ruby application (#184)
10
+
1
11
  ## 1.1.16 (14/08/14)
2
12
 
3
13
  - deal with `real_path` (file-system) layout regression introduced in 1.1.15
@@ -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.16.jar", __FILE__)
4
+ File.expand_path("../jruby-rack-1.1.17.jar", __FILE__)
5
5
  end
6
6
  require jruby_rack_jar_path if defined?(JRUBY_VERSION)
7
7
  end
@@ -7,6 +7,6 @@
7
7
 
8
8
  module JRuby
9
9
  module Rack
10
- VERSION = '1.1.16'
10
+ VERSION = '1.1.17'
11
11
  end
12
12
  end
metadata CHANGED
@@ -1,63 +1,50 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: jruby-rack
3
- version: !ruby/object:Gem::Version
4
- prerelease:
5
- version: 1.1.16
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.1.17
6
5
  platform: ruby
7
- authors:
8
- - Nick Sieger
9
- autorequire:
6
+ authors:
7
+ - Nick Sieger
8
+ autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
-
13
- date: 2014-08-14 00:00:00 Z
11
+ date: 2014-12-30 00:00:00.000000000 Z
14
12
  dependencies: []
15
-
16
13
  description: JRuby-Rack is a combined Java and Ruby library that adapts the Java Servlet API to Rack. For JRuby only.
17
- email:
18
- - nick@nicksieger.com
14
+ email:
15
+ - nick@nicksieger.com
19
16
  executables: []
20
-
21
17
  extensions: []
22
-
23
18
  extra_rdoc_files: []
24
-
25
- files:
26
- - History.md
27
- - LICENSE.txt
28
- - README.md
29
- - lib/jruby-rack-1.1.16.jar
30
- - lib/jruby-rack.rb
31
- - lib/jruby/rack/version.rb
19
+ files:
20
+ - History.md
21
+ - LICENSE.txt
22
+ - README.md
23
+ - lib/jruby-rack-1.1.17.jar
24
+ - lib/jruby-rack.rb
25
+ - lib/jruby/rack/version.rb
32
26
  homepage: http://jruby.org
33
- licenses:
34
- - MIT
35
- post_install_message:
27
+ licenses:
28
+ - MIT
29
+ metadata: {}
30
+ post_install_message:
36
31
  rdoc_options: []
37
-
38
- require_paths:
39
- - lib
40
- required_ruby_version: !ruby/object:Gem::Requirement
41
- none: false
42
- requirements:
43
- - - ">="
44
- - !ruby/object:Gem::Version
45
- hash: 2
46
- segments:
47
- - 0
48
- version: "0"
49
- required_rubygems_version: !ruby/object:Gem::Requirement
50
- none: false
51
- requirements:
52
- - - ">="
53
- - !ruby/object:Gem::Version
54
- version: "0"
32
+ require_paths:
33
+ - lib
34
+ required_ruby_version: !ruby/object:Gem::Requirement
35
+ requirements:
36
+ - - '>='
37
+ - !ruby/object:Gem::Version
38
+ version: '0'
39
+ required_rubygems_version: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - '>='
42
+ - !ruby/object:Gem::Version
43
+ version: '0'
55
44
  requirements: []
56
-
57
- rubyforge_project:
58
- rubygems_version: 1.8.24
59
- signing_key:
60
- specification_version: 3
45
+ rubyforge_project:
46
+ rubygems_version: 2.1.9
47
+ signing_key:
48
+ specification_version: 4
61
49
  summary: Rack adapter for JRuby and Servlet Containers
62
50
  test_files: []
63
-