mizuno 0.5.0 → 0.5.1
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/lib/mizuno/runner.rb +2 -2
- data/lib/mizuno/version.rb +1 -1
- data/mizuno.gemspec +2 -2
- metadata +3 -4
data/lib/mizuno/runner.rb
CHANGED
@@ -189,7 +189,7 @@ module Mizuno
|
|
189
189
|
# returns true if we could connect and didn't get a server
|
190
190
|
# error, false otherwise.
|
191
191
|
#
|
192
|
-
def Runner.wait_for_server(options, timeout =
|
192
|
+
def Runner.wait_for_server(options, timeout = 120)
|
193
193
|
begin
|
194
194
|
Net::HTTP.start(options[:host], options[:port]) do |http|
|
195
195
|
http.read_timeout = timeout
|
@@ -211,7 +211,7 @@ module Mizuno
|
|
211
211
|
# offline. If we hit _timeout_ seconds and the server is still
|
212
212
|
# responding, returns false.
|
213
213
|
#
|
214
|
-
def Runner.wait_for_server_to_die(options, timeout =
|
214
|
+
def Runner.wait_for_server_to_die(options, timeout = 120)
|
215
215
|
begin
|
216
216
|
while(timeout > 0)
|
217
217
|
Net::HTTP.start(options[:host], options[:port]) do |http|
|
data/lib/mizuno/version.rb
CHANGED
data/mizuno.gemspec
CHANGED
@@ -1,4 +1,5 @@
|
|
1
|
-
|
1
|
+
$:.push File.expand_path("../lib/mizuno", __FILE__)
|
2
|
+
require 'version'
|
2
3
|
|
3
4
|
Gem::Specification.new do |spec|
|
4
5
|
spec.name = "mizuno"
|
@@ -17,7 +18,6 @@ Gem::Specification.new do |spec|
|
|
17
18
|
Rakefile
|
18
19
|
Gemfile
|
19
20
|
mizuno.gemspec
|
20
|
-
tmp/.gitkeep
|
21
21
|
lib/mizuno/choices.rb
|
22
22
|
lib/mizuno/http_server.rb
|
23
23
|
lib/mizuno/java_logger.rb
|
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: mizuno
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 0.5.
|
5
|
+
version: 0.5.1
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Don Werve
|
@@ -10,7 +10,7 @@ autorequire:
|
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
12
|
|
13
|
-
date: 2012-
|
13
|
+
date: 2012-02-17 00:00:00 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: rack
|
@@ -115,7 +115,6 @@ files:
|
|
115
115
|
- Rakefile
|
116
116
|
- Gemfile
|
117
117
|
- mizuno.gemspec
|
118
|
-
- tmp/.gitkeep
|
119
118
|
- lib/mizuno/choices.rb
|
120
119
|
- lib/mizuno/http_server.rb
|
121
120
|
- lib/mizuno/java_logger.rb
|
@@ -162,7 +161,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
162
161
|
requirements: []
|
163
162
|
|
164
163
|
rubyforge_project:
|
165
|
-
rubygems_version: 1.8.
|
164
|
+
rubygems_version: 1.8.15
|
166
165
|
signing_key:
|
167
166
|
specification_version: 3
|
168
167
|
summary: Rack handler for Jetty 8 on JRuby. Features multithreading, event-driven I/O, and async support.
|