ruby-net-nntp 0.0.8 → 0.0.9

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 CHANGED
@@ -1,4 +1,17 @@
1
- 2007-07-02 17:15 +0200 Anton 'tony' Bangratz <anton.bangratz@gmail.com> (6fe65b246b19 [tip])
1
+ 2007-07-02 20:51 +0200 Anton 'tony' Bangratz <anton.bangratz@gmail.com> (4399451e92c0 [tip])
2
+
3
+ * lib/net/nntp/version.rb:
4
+ Release 0.0.8, fixed version
5
+
6
+ 2007-07-02 20:50 +0200 Anton 'tony' Bangratz <anton.bangratz@gmail.com> (c65d5217aa31)
7
+
8
+ * lib/net/nntp.rb, lib/net/nntp_article.rb, lib/net/nntp_group.rb,
9
+ test/functional/test_nntp.rb, test/mock/mock_socket.rb,
10
+ test/unit/test_nntp_group.rb:
11
+ fixed tests, fixed tabs, fixed xhdr bug and api, fixed chomping of
12
+ results
13
+
14
+ 2007-07-02 17:15 +0200 Anton 'tony' Bangratz <anton.bangratz@gmail.com> (6fe65b246b19)
2
15
 
3
16
  * lib/net/nntp/version.rb:
4
17
  new version; new release
data/lib/net/nntp.rb CHANGED
@@ -330,7 +330,7 @@ module Net
330
330
  loop do
331
331
  str = @socket.readline
332
332
  ra << str.chomp if str
333
- break if force_oneline || (str == "." || !str || (linecnt == 0 && ONELINE_STATUSES.include?(str[0..2])) )
333
+ break if force_oneline || (str.chomp == "." || !str || (linecnt == 0 && ONELINE_STATUSES.include?(str[0..2])) )
334
334
  linecnt += 1
335
335
  end
336
336
  debug "Response: '#{ra}'"
@@ -1,5 +1,5 @@
1
1
  module Net
2
2
  class NNTP
3
- VERSION = "0.0.8"
3
+ VERSION = "0.0.9"
4
4
  end
5
5
  end
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.8
6
+ version: 0.0.9
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:
@@ -32,9 +32,9 @@ files:
32
32
  - lib/net
33
33
  - lib/net/nntp
34
34
  - lib/net/nntp/version.rb
35
- - lib/net/nntp.rb
36
35
  - lib/net/nntp_article.rb
37
36
  - lib/net/nntp_group.rb
37
+ - lib/net/nntp.rb
38
38
  - test/functional
39
39
  - test/functional/test_nntp.rb
40
40
  - test/mock