zbatery 3.3.0 → 3.4.0

Sign up to get free protection for your applications and to get access to all the features.
data/ChangeLog CHANGED
@@ -1,5 +1,18 @@
1
- ChangeLog from http://bogomips.org/zbatery.git (v0.3.1..v3.3.0)
1
+ ChangeLog from http://bogomips.org/zbatery.git (v0.3.1..v3.4.0)
2
2
 
3
+ commit 7e3ea3cf5de40c119bfc4c6566bb52fd48635c8c
4
+ Author: Eric Wong <normalperson@yhbt.net>
5
+ Date: Sat May 21 03:28:23 2011 +0000
6
+
7
+ Zbatery 3.4.0 - another Rainbows! resync
8
+
9
+ This release fixes dependencies on Rainbows! and gets all
10
+ the improvements Rainbows! 3.4.0 got:
11
+
12
+ * Kgio.autopush support for multi-threaded configurations
13
+ * Immediate disconnect of idle clients on SIGQUIT for
14
+ concurrency models where idle clients are cheap to maintain.
15
+
3
16
  commit 604dc05809e14c41f148962cc7d6849a941f8e8f
4
17
  Author: Eric Wong <normalperson@yhbt.net>
5
18
  Date: Mon May 16 14:28:29 2011 -0700
data/GIT-VERSION-FILE CHANGED
@@ -1 +1 @@
1
- GIT_VERSION = 3.3.0
1
+ GIT_VERSION = 3.4.0
data/GIT-VERSION-GEN CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/bin/sh
2
2
 
3
3
  GVF=GIT-VERSION-FILE
4
- DEF_VER=v3.1.0.GIT
4
+ DEF_VER=v3.4.0.GIT
5
5
 
6
6
  LF='
7
7
  '
data/LATEST CHANGED
@@ -1,8 +1,9 @@
1
- === Zbatery 3.3.0 - another Rainbows! resync / 2011-05-16 21:31 UTC
1
+ === Zbatery 3.4.0 - another Rainbows! resync / 2011-05-21 03:30 UTC
2
2
 
3
- Like Rainbows! 3.3.0, we've added the GPLv3 to our license
4
- (in addition to GPLv2 and Ruby terms). See Rainbows! 3.3.0
5
- release notes and news for more infor on changes:
3
+ This release fixes dependencies on Rainbows! and gets all
4
+ the improvements Rainbows! 3.4.0 got:
6
5
 
7
- http://rainbows.rubyforge.org/NEWS.html
6
+ * Kgio.autopush support for multi-threaded configurations
7
+ * Immediate disconnect of idle clients on SIGQUIT for
8
+ concurrency models where idle clients are cheap to maintain.
8
9
 
data/NEWS CHANGED
@@ -1,3 +1,12 @@
1
+ === Zbatery 3.4.0 - another Rainbows! resync / 2011-05-21 03:30 UTC
2
+
3
+ This release fixes dependencies on Rainbows! and gets all
4
+ the improvements Rainbows! 3.4.0 got:
5
+
6
+ * Kgio.autopush support for multi-threaded configurations
7
+ * Immediate disconnect of idle clients on SIGQUIT for
8
+ concurrency models where idle clients are cheap to maintain.
9
+
1
10
  === Zbatery 3.3.0 - another Rainbows! resync / 2011-05-16 21:31 UTC
2
11
 
3
12
  Like Rainbows! 3.3.0, we've added the GPLv3 to our license
data/lib/zbatery.rb CHANGED
@@ -4,7 +4,7 @@ require 'rainbows'
4
4
  Rainbows.forked = true
5
5
  module Zbatery
6
6
 
7
- VERSION = "3.3.0"
7
+ VERSION = "3.4.0"
8
8
 
9
9
  class << self
10
10
 
data/t/test_isolate.rb CHANGED
@@ -14,7 +14,7 @@ old_out = $stdout.dup
14
14
  $stdout.reopen($stderr)
15
15
 
16
16
  Isolate.now!(opts) do
17
- gem 'rainbows', '3.3.0'
17
+ gem 'rainbows', '3.4.0'
18
18
  gem 'raindrops', '0.6.1'
19
19
 
20
20
  if engine == "ruby"
@@ -34,10 +34,10 @@ Isolate.now!(opts) do
34
34
  end
35
35
 
36
36
  if RUBY_PLATFORM =~ /linux/
37
- gem 'sleepy_penguin', '2.0.0'
37
+ gem 'sleepy_penguin', '3.0.0'
38
38
 
39
39
  # is 2.6.32 new enough?
40
- gem 'io_splice', '4.1.0' if `uname -r`.strip > '2.6.32'
40
+ gem 'io_splice', '4.1.1' if `uname -r`.strip > '2.6.32'
41
41
  end
42
42
  end
43
43
 
data/zbatery.gemspec CHANGED
@@ -32,7 +32,7 @@ Gem::Specification.new do |s|
32
32
  # espace-neverblock + eventmachine
33
33
  # async_sinatra + sinatra + eventmachine
34
34
  #
35
- s.add_dependency(%q<rainbows>, ["~> 3.1.0"])
35
+ s.add_dependency(%q<rainbows>, ["~> 3.4.0"])
36
36
  s.add_development_dependency(%q<wrongdoc>, "~> 1.5")
37
37
  s.add_development_dependency(%q<isolate>, "~> 3.0.0")
38
38
 
metadata CHANGED
@@ -1,13 +1,8 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: zbatery
3
3
  version: !ruby/object:Gem::Version
4
- hash: 11
5
4
  prerelease:
6
- segments:
7
- - 3
8
- - 3
9
- - 0
10
- version: 3.3.0
5
+ version: 3.4.0
11
6
  platform: ruby
12
7
  authors:
13
8
  - Zbatery hackers
@@ -15,7 +10,7 @@ autorequire:
15
10
  bindir: bin
16
11
  cert_chain: []
17
12
 
18
- date: 2011-05-16 00:00:00 Z
13
+ date: 2011-05-21 00:00:00 Z
19
14
  dependencies:
20
15
  - !ruby/object:Gem::Dependency
21
16
  name: rainbows
@@ -25,12 +20,7 @@ dependencies:
25
20
  requirements:
26
21
  - - ~>
27
22
  - !ruby/object:Gem::Version
28
- hash: 3
29
- segments:
30
- - 3
31
- - 1
32
- - 0
33
- version: 3.1.0
23
+ version: 3.4.0
34
24
  type: :runtime
35
25
  version_requirements: *id001
36
26
  - !ruby/object:Gem::Dependency
@@ -41,10 +31,6 @@ dependencies:
41
31
  requirements:
42
32
  - - ~>
43
33
  - !ruby/object:Gem::Version
44
- hash: 5
45
- segments:
46
- - 1
47
- - 5
48
34
  version: "1.5"
49
35
  type: :development
50
36
  version_requirements: *id002
@@ -56,11 +42,6 @@ dependencies:
56
42
  requirements:
57
43
  - - ~>
58
44
  - !ruby/object:Gem::Version
59
- hash: 7
60
- segments:
61
- - 3
62
- - 0
63
- - 0
64
45
  version: 3.0.0
65
46
  type: :development
66
47
  version_requirements: *id003
@@ -143,18 +124,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
143
124
  requirements:
144
125
  - - ">="
145
126
  - !ruby/object:Gem::Version
146
- hash: 3
147
- segments:
148
- - 0
149
127
  version: "0"
150
128
  required_rubygems_version: !ruby/object:Gem::Requirement
151
129
  none: false
152
130
  requirements:
153
131
  - - ">="
154
132
  - !ruby/object:Gem::Version
155
- hash: 3
156
- segments:
157
- - 0
158
133
  version: "0"
159
134
  requirements: []
160
135