ruby-net-nntp 0.0.7 → 0.0.8
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 +12 -1
- data/lib/net/nntp.rb +345 -336
- data/lib/net/nntp/version.rb +1 -1
- data/lib/net/nntp_article.rb +22 -22
- data/lib/net/nntp_group.rb +61 -61
- data/test/functional/test_nntp.rb +229 -229
- data/test/mock/mock_socket.rb +213 -213
- data/test/unit/test_nntp_group.rb +1 -1
- metadata +3 -3
@@ -24,7 +24,7 @@ class TestNNTPGroup< Test::Unit::TestCase
|
|
24
24
|
def test_first
|
25
25
|
@group.article_info = [100, 1, 101]
|
26
26
|
assert_equal 100, @group.article_count
|
27
|
-
assert_equal 1,
|
27
|
+
assert_equal 1, @group.article_first
|
28
28
|
assert_equal 101, @group.article_last
|
29
29
|
end
|
30
30
|
|
metadata
CHANGED
@@ -3,7 +3,7 @@ rubygems_version: 0.9.4
|
|
3
3
|
specification_version: 1
|
4
4
|
name: ruby-net-nntp
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 0.0.
|
6
|
+
version: 0.0.8
|
7
7
|
date: 2007-07-02 00:00:00 +02:00
|
8
8
|
summary: Net::XXX style NNTP Library for easy access.
|
9
9
|
require_paths:
|
@@ -30,11 +30,11 @@ authors:
|
|
30
30
|
- Anton Bangratz
|
31
31
|
files:
|
32
32
|
- lib/net
|
33
|
-
- lib/net/nntp_group.rb
|
34
33
|
- lib/net/nntp
|
35
34
|
- lib/net/nntp/version.rb
|
36
|
-
- lib/net/nntp_article.rb
|
37
35
|
- lib/net/nntp.rb
|
36
|
+
- lib/net/nntp_article.rb
|
37
|
+
- lib/net/nntp_group.rb
|
38
38
|
- test/functional
|
39
39
|
- test/functional/test_nntp.rb
|
40
40
|
- test/mock
|