ichannel 5.0.0 → 5.0.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/ChangeLog.txt +7 -5
- data/lib/ichannel/version.rb +1 -1
- metadata +3 -3
data/ChangeLog.txt
CHANGED
@@ -1,15 +1,17 @@
|
|
1
1
|
== v5.0.0
|
2
2
|
* Remove IChannel#empty?
|
3
3
|
|
4
|
-
|
5
|
-
|
4
|
+
I think the #readable? method is all you need, and is a much more
|
5
|
+
accurate description of what the method is asking. We cannot determine
|
6
|
+
if the channel is really empty, but we can ask if it is readable at the
|
7
|
+
time you ask.
|
6
8
|
|
7
9
|
== v4.1.0
|
8
10
|
* Add IChannel#readable?
|
9
11
|
|
10
|
-
|
11
|
-
|
12
|
-
|
12
|
+
A method that can tell you whether or not a read would block.
|
13
|
+
When it returns true, a read shouldn't block, on the other hand
|
14
|
+
if it were false it'd likely block by the time you call #get.
|
13
15
|
|
14
16
|
== v4.0.0
|
15
17
|
* Modify IChannel#empty?
|
data/lib/ichannel/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ichannel
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.0.
|
4
|
+
version: 5.0.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -45,7 +45,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
45
45
|
version: '0'
|
46
46
|
segments:
|
47
47
|
- 0
|
48
|
-
hash: -
|
48
|
+
hash: -1662608867092836857
|
49
49
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
50
50
|
none: false
|
51
51
|
requirements:
|
@@ -54,7 +54,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
54
54
|
version: '0'
|
55
55
|
segments:
|
56
56
|
- 0
|
57
|
-
hash: -
|
57
|
+
hash: -1662608867092836857
|
58
58
|
requirements: []
|
59
59
|
rubyforge_project:
|
60
60
|
rubygems_version: 1.8.23
|