fishwife 1.8.1-java → 1.9.0-java

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: da6bb47238b5e657b46cfd57554067e416167bdc
4
- data.tar.gz: 7c1e89a29da563c3a6d85f6abb2c80e0b572c3ba
3
+ metadata.gz: 601c734db28498a70a3c7f24d973b7b0e2c479a3
4
+ data.tar.gz: 714d5e5fd5431590b2890b6565a4671626037847
5
5
  SHA512:
6
- metadata.gz: 32f7500ca1dc117376dfb5a012e2095b552d6b064624e4eb401c795d9d6ed906e09445b1c33594a705d42367a194dcd9a562b7fe0a688aada43c7af17c8ba272
7
- data.tar.gz: e9cea7ca709a9dc2b7fce66a2e45f75cddc03b95bdfae87e153f79d83c899f4ca9dc72498abad672f6b10b2a084876526df889ec3343f64b21b8d193e974b352
6
+ metadata.gz: a53a415a0fa11dd101fbeb4ac1ee3c9c46d7b23bdfe6a877e60c029933b7f69f11b8bcd81c8285519f5541fbbf3210f5adde15c20e560afba9874dd2aa9ca56e
7
+ data.tar.gz: 354dcf246450f3b55faced05224d4f671ae0abcd394c5e98768eb3ca665781ca83470c1b5dd6cd57e9ac86bbfdb1aa1d73efdee9c5634255768cb856688a41e4
@@ -1,3 +1,9 @@
1
+ === 1.9.0 (2017-2-13)
2
+ * Upgrade/broaden to rack [1.6.4, 2.1). Note that the rack 2.0.1 gem
3
+ lists ruby 2.2.2 as its minimum ruby version, thus you will need to
4
+ run fishwife on jruby 9.x when using rack 2.x. Tested with rack
5
+ 2.0.1 and jruby 9.1.2.0.
6
+
1
7
  === 1.8.1 (2016-3-30)
2
8
  * Avoid mutating the rack response headers hash as part of the special
3
9
  handling of Content-Length and Content-Type. Rack applications may
@@ -19,4 +19,4 @@ spec/test_app.rb
19
19
  spec/data/hello.txt
20
20
  spec/data/localhost.keystore
21
21
  spec/data/reddit-icon.png
22
- lib/fishwife/fishwife-1.8.1.jar
22
+ lib/fishwife/fishwife-1.9.0.jar
@@ -1,7 +1,7 @@
1
1
  = Fishwife
2
2
 
3
3
  * http://github.com/dekellum/fishwife
4
- * Travis CI: {<img src="https://travis-ci.org/dekellum/fishwife.png" />}[https://travis-ci.org/dekellum/fishwife]
4
+ * Travis CI: {<img src="https://travis-ci.org/dekellum/fishwife.svg?branch=fishwife-dev" />}[https://travis-ci.org/dekellum/fishwife]
5
5
 
6
6
  == Description
7
7
 
@@ -94,9 +94,22 @@ All options also support redirecting log output (including any
94
94
  JVM-level errors) to a file. Iyyov supports log rotation internally.
95
95
  Unix-like logrotate(8) may be used with the former process monitors.
96
96
 
97
+ == Building from Source and Contributing
98
+
99
+ You'll need a working Java 8+ JDK (with javac) and recent JRuby 1.7.x
100
+ or 9.x on your PATH. Then:
101
+
102
+ jruby -S gem install rjack-tarpit -v'~> 2.1'
103
+ jruby -S gem install bundler
104
+ jruby -S bundle install
105
+ jruby -S bundle exec rake test
106
+
107
+ This above is intentionally pedantic to hopefully minimize any
108
+ confusion.
109
+
97
110
  == License
98
111
 
99
- Copyright (c) 2011-2016 David Kellum
112
+ Copyright (c) 2011-2017 David Kellum
100
113
 
101
114
  Licensed under the Apache License, Version 2.0 (the "License"); you
102
115
  may not use this file except in compliance with the License. You
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env jruby
2
2
  # -*- ruby -*-
3
3
  #--
4
- # Copyright (c) 2011-2016 David Kellum
4
+ # Copyright (c) 2011-2017 David Kellum
5
5
  # Copyright (c) 2010-2011 Don Werve
6
6
  #
7
7
  # Licensed under the Apache License, Version 2.0 (the "License"); you
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2011-2016 David Kellum
2
+ # Copyright (c) 2011-2017 David Kellum
3
3
  # Copyright (c) 2010-2011 Don Werve
4
4
  #
5
5
  # Licensed under the Apache License, Version 2.0 (the "License"); you
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2011-2016 David Kellum
2
+ # Copyright (c) 2011-2017 David Kellum
3
3
  #
4
4
  # Licensed under the Apache License, Version 2.0 (the "License"); you
5
5
  # may not use this file except in compliance with the License. You may
@@ -15,6 +15,6 @@
15
15
  #++
16
16
 
17
17
  module Fishwife
18
- VERSION = '1.8.1'
18
+ VERSION = '1.9.0'
19
19
  LIB_DIR = File.dirname( __FILE__ )
20
20
  end
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2011-2016 David Kellum
2
+ # Copyright (c) 2011-2017 David Kellum
3
3
  #
4
4
  # Licensed under the Apache License, Version 2.0 (the "License"); you
5
5
  # may not use this file except in compliance with the License. You may
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2011-2016 David Kellum
2
+ # Copyright (c) 2011-2017 David Kellum
3
3
  # Copyright (c) 2010-2011 Don Werve
4
4
  #
5
5
  # Licensed under the Apache License, Version 2.0 (the "License"); you
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2011-2016 David Kellum
2
+ # Copyright (c) 2011-2017 David Kellum
3
3
  #
4
4
  # Licensed under the Apache License, Version 2.0 (the "License"); you
5
5
  # may not use this file except in compliance with the License. You may
data/pom.xml CHANGED
@@ -4,7 +4,7 @@
4
4
  <groupId>fishwife</groupId>
5
5
  <artifactId>fishwife</artifactId>
6
6
  <packaging>jar</packaging>
7
- <version>1.8.1</version>
7
+ <version>1.9.0</version>
8
8
  <name>Fishwife Java Extension</name>
9
9
 
10
10
  <properties>
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2011-2016 David Kellum
2
+ # Copyright (c) 2011-2017 David Kellum
3
3
  # Copyright (c) 2010-2011 Don Werve
4
4
  #
5
5
  # Licensed under the Apache License, Version 2.0 (the "License"); you
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2011-2016 David Kellum
2
+ # Copyright (c) 2011-2017 David Kellum
3
3
  # Copyright (c) 2010-2011 Don Werve
4
4
  #
5
5
  # Licensed under the Apache License, Version 2.0 (the "License"); you
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2011-2016 David Kellum
2
+ # Copyright (c) 2011-2017 David Kellum
3
3
  # Copyright (c) 2010-2011 Don Werve
4
4
  #
5
5
  # Licensed under the Apache License, Version 2.0 (the "License"); you
metadata CHANGED
@@ -1,24 +1,24 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fishwife
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.8.1
4
+ version: 1.9.0
5
5
  platform: java
6
6
  authors:
7
7
  - David Kellum
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-03-30 00:00:00.000000000 Z
11
+ date: 2017-02-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
15
15
  requirements:
16
16
  - - ">="
17
17
  - !ruby/object:Gem::Version
18
- version: 1.5.2
18
+ version: 1.6.4
19
19
  - - "<"
20
20
  - !ruby/object:Gem::Version
21
- version: '1.7'
21
+ version: '2.1'
22
22
  name: rack
23
23
  prerelease: false
24
24
  type: :runtime
@@ -26,10 +26,10 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 1.5.2
29
+ version: 1.6.4
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
- version: '1.7'
32
+ version: '2.1'
33
33
  - !ruby/object:Gem::Dependency
34
34
  requirement: !ruby/object:Gem::Requirement
35
35
  requirements:
@@ -141,7 +141,7 @@ files:
141
141
  - example/ssl.ru
142
142
  - lib/fishwife.rb
143
143
  - lib/fishwife/base.rb
144
- - lib/fishwife/fishwife-1.8.1.jar
144
+ - lib/fishwife/fishwife-1.9.0.jar
145
145
  - lib/fishwife/http_server.rb
146
146
  - lib/fishwife/rack_servlet.rb
147
147
  - lib/rack/handler/fishwife.rb
@@ -173,7 +173,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
173
173
  version: '0'
174
174
  requirements: []
175
175
  rubyforge_project:
176
- rubygems_version: 2.4.8
176
+ rubygems_version: 2.6.8
177
177
  signing_key:
178
178
  specification_version: 4
179
179
  summary: A Jetty based Rack HTTP 1.1 server.