From 7e3ea3cf5de40c119bfc4c6566bb52fd48635c8c Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Sat, 21 May 2011 03:28:23 +0000 Subject: [PATCH] Zbatery 3.4.0 - another Rainbows! resync This release fixes dependencies on Rainbows! and gets all the improvements Rainbows! 3.4.0 got: * Kgio.autopush support for multi-threaded configurations * Immediate disconnect of idle clients on SIGQUIT for concurrency models where idle clients are cheap to maintain. --- GIT-VERSION-GEN | 2 +- lib/zbatery.rb | 2 +- t/test_isolate.rb | 6 +++--- zbatery.gemspec | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/GIT-VERSION-GEN b/GIT-VERSION-GEN index 861c86f..b059f8b 100755 --- a/GIT-VERSION-GEN +++ b/GIT-VERSION-GEN @@ -1,7 +1,7 @@ #!/bin/sh GVF=GIT-VERSION-FILE -DEF_VER=v3.1.0.GIT +DEF_VER=v3.4.0.GIT LF=' ' diff --git a/lib/zbatery.rb b/lib/zbatery.rb index 07566fa..f038f63 100644 --- a/lib/zbatery.rb +++ b/lib/zbatery.rb @@ -4,7 +4,7 @@ require 'rainbows' Rainbows.forked = true module Zbatery - VERSION = "3.3.0" + VERSION = "3.4.0" class << self diff --git a/t/test_isolate.rb b/t/test_isolate.rb index 516752d..dd79a58 100644 --- a/t/test_isolate.rb +++ b/t/test_isolate.rb @@ -14,7 +14,7 @@ old_out = $stdout.dup $stdout.reopen($stderr) Isolate.now!(opts) do - gem 'rainbows', '3.3.0' + gem 'rainbows', '3.4.0' gem 'raindrops', '0.6.1' if engine == "ruby" @@ -34,10 +34,10 @@ Isolate.now!(opts) do end if RUBY_PLATFORM =~ /linux/ - gem 'sleepy_penguin', '2.0.0' + gem 'sleepy_penguin', '3.0.0' # is 2.6.32 new enough? - gem 'io_splice', '4.1.0' if `uname -r`.strip > '2.6.32' + gem 'io_splice', '4.1.1' if `uname -r`.strip > '2.6.32' end end diff --git a/zbatery.gemspec b/zbatery.gemspec index 7381de7..de26057 100644 --- a/zbatery.gemspec +++ b/zbatery.gemspec @@ -32,7 +32,7 @@ Gem::Specification.new do |s| # espace-neverblock + eventmachine # async_sinatra + sinatra + eventmachine # - s.add_dependency(%q, ["~> 3.1.0"]) + s.add_dependency(%q, ["~> 3.4.0"]) s.add_development_dependency(%q, "~> 1.5") s.add_development_dependency(%q, "~> 3.0.0") -- 2.11.4.GIT