minter-raccdoc 0.0.9 → 0.0.10

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG CHANGED
@@ -1,15 +1 @@
1
- v0.0.8 Bugfix on range, bugfix on post authors.
2
-
3
- v0.0.7 Bugfix on range
4
-
5
- v0.0.6 Add range option to Forum.noteids
6
-
7
- v0.0.5 Full test coverage, bug fixes
8
-
9
- v0.0.4 Add readers for extra flags, add DAMMIT to post reading.
10
-
11
- v0.0.3 Documentation updates
12
-
13
- v0.0.2 Adding tests, cleaning up gemspec.
14
-
15
- v0.0.1 Initial release.
1
+ For changes, see the github source at http://github.com/minter/raccdoc/
data/lib/raccdoc.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  module Raccdoc
2
2
 
3
- VERSION = '0.0.9'
3
+ VERSION = '0.0.10'
4
4
  require 'socket'
5
5
  require 'time'
6
6
 
data/lib/raccdoc/post.rb CHANGED
@@ -18,7 +18,7 @@ module Raccdoc
18
18
  # * authority - either "Sysop" or "Forum Moderator" if the post was made with that header.
19
19
  def initialize(socket,postid,args={})
20
20
  @socket = socket
21
- dammit = args[:dammit] ? '' : 'DAMMIT'
21
+ dammit = args[:dammit] ? 'DAMMIT' : ''
22
22
  @socket.puts "READ #{postid.to_s} #{dammit}"
23
23
  response = @socket.readline.chomp
24
24
  unless response.match(/^3/)
@@ -80,4 +80,4 @@ module Raccdoc
80
80
  end
81
81
  end
82
82
  end
83
- end
83
+ end
data/raccdoc.gemspec CHANGED
@@ -2,11 +2,11 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{raccdoc}
5
- s.version = "0.0.9"
5
+ s.version = "0.0.10"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["H. Wade Minter"]
9
- s.date = %q{2009-09-03}
9
+ s.date = %q{2009-09-15}
10
10
  s.description = %q{A Ruby interface into the Raccdoc protocol}
11
11
  s.email = %q{minter@lunenburg.org}
12
12
  s.extra_rdoc_files = ["CHANGELOG", "lib/raccdoc/connection.rb", "lib/raccdoc/forum.rb", "lib/raccdoc/post.rb", "lib/raccdoc.rb", "LICENSE", "README.rdoc"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: minter-raccdoc
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.9
4
+ version: 0.0.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - H. Wade Minter
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-09-03 00:00:00 -07:00
12
+ date: 2009-09-15 00:00:00 -07:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency