mizuno 0.5.0 → 0.5.1

Sign up to get free protection for your applications and to get access to all the features.
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 = 10)
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 = 10)
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|
@@ -1,3 +1,3 @@
1
1
  module Mizuno
2
- VERSION = "0.5.0"
2
+ VERSION = "0.5.1"
3
3
  end
data/mizuno.gemspec CHANGED
@@ -1,4 +1,5 @@
1
- require 'lib/mizuno/version'
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.0
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-01-08 00:00:00 Z
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.9
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.