fishwife 1.3.2-java → 1.4.0-java

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.rdoc CHANGED
@@ -1,3 +1,9 @@
1
+ === 1.4.0 (2012-12-13)
2
+ * Upgrade/broaden to rjack-jetty [7.6.7,9.1). This includes 9.0.0.0
3
+ based on upstream M3, a milestone pre-release.
4
+ * Jetty 9 seems to prefer a output stream close at end of request,
5
+ instead of just a flush. Jetty 7 is fine with it as well.
6
+
1
7
  === 1.3.2 (2012-10-22)
2
8
  * Fix an issue with StringBuffer.toString access, JRuby 1.7.0
3
9
  (release), and invoke dynamic (AKA +indy), on by default only with
data/Manifest.txt CHANGED
@@ -17,4 +17,4 @@ spec/spec_helper.rb
17
17
  spec/test_app.rb
18
18
  spec/data/hello.txt
19
19
  spec/data/reddit-icon.png
20
- lib/fishwife/fishwife-1.3.2.jar
20
+ lib/fishwife/fishwife-1.4.0.jar
data/README.rdoc CHANGED
@@ -23,15 +23,15 @@ than one goat farm and one butcher.
23
23
  Fishwife is a fork of {Mizuno}[https://github.com/matadon/mizuno]
24
24
 
25
25
  Mizuno is a set of Jetty-powered running shoes for JRuby/Rack. It
26
- provides a handler for Jetty 7 on JRuby; multithreading, event-driven
27
- I/O, and async support.
26
+ provides a handler for Jetty 7-9 on JRuby; multithreading,
27
+ event-driven I/O, and async support.
28
28
 
29
29
  === Features
30
30
 
31
31
  Mizuno also supports asynchronous request handling, via the Java
32
32
  Servlet 3.0 asynchronous processing mechanism
33
33
 
34
- All the speed comes from Jetty 7; Mizuno just ties it to Rack through
34
+ All the speed comes from Jetty; Mizuno just ties it to Rack through
35
35
  JRuby's Ruby/Java integration layer.
36
36
 
37
37
  Note that Mizuno is NOT a direct replacement for jruby-rack or
data/lib/fishwife/base.rb CHANGED
@@ -15,6 +15,6 @@
15
15
  #++
16
16
 
17
17
  module Fishwife
18
- VERSION = '1.3.2'
18
+ VERSION = '1.4.0'
19
19
  LIB_DIR = File.dirname( __FILE__ )
20
20
  end
@@ -90,7 +90,7 @@ module Fishwife
90
90
  @server.stop if @server
91
91
  end
92
92
 
93
- def create_connectors
93
+ def create_connectors( *args )
94
94
  super.tap do |ctrs|
95
95
  ctrs.first.host = @host if ctrs.first
96
96
  end
@@ -237,7 +237,7 @@ module Fishwife
237
237
  body.close if body.respond_to?(:close)
238
238
 
239
239
  # All done.
240
- output.flush
240
+ output.close
241
241
  false
242
242
  end
243
243
  end
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.3.2</version>
7
+ <version>1.4.0</version>
8
8
  <name>Fishwife Java Extension</name>
9
9
 
10
10
  <properties>
metadata CHANGED
@@ -2,14 +2,14 @@
2
2
  name: fishwife
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 1.3.2
5
+ version: 1.4.0
6
6
  platform: java
7
7
  authors:
8
8
  - David Kellum
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-10-22 00:00:00.000000000 Z
12
+ date: 2012-12-14 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rack
@@ -33,19 +33,19 @@ dependencies:
33
33
  requirements:
34
34
  - - ! '>='
35
35
  - !ruby/object:Gem::Version
36
- version: 7.5.4
36
+ version: 7.6.7
37
37
  - - <
38
38
  - !ruby/object:Gem::Version
39
- version: '7.7'
39
+ version: '9.1'
40
40
  none: false
41
41
  requirement: !ruby/object:Gem::Requirement
42
42
  requirements:
43
43
  - - ! '>='
44
44
  - !ruby/object:Gem::Version
45
- version: 7.5.4
45
+ version: 7.6.7
46
46
  - - <
47
47
  - !ruby/object:Gem::Version
48
- version: '7.7'
48
+ version: '9.1'
49
49
  none: false
50
50
  prerelease: false
51
51
  type: :runtime
@@ -164,7 +164,7 @@ files:
164
164
  - spec/test_app.rb
165
165
  - spec/data/hello.txt
166
166
  - spec/data/reddit-icon.png
167
- - lib/fishwife/fishwife-1.3.2.jar
167
+ - lib/fishwife/fishwife-1.4.0.jar
168
168
  homepage: http://github.com/dekellum/fishwife
169
169
  licenses: []
170
170
  post_install_message: