RubySpamAssassin 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/README.rdoc +14 -3
  2. data/RubySpamAssassin.gemspec +1 -1
  3. data/VERSION +1 -1
  4. metadata +3 -3
data/README.rdoc CHANGED
@@ -1,6 +1,18 @@
1
1
  = RubySpamAssassin
2
2
 
3
- Description goes here.
3
+ Interacting with SpamAssassin's daemon process used to be a pain in the ass. Shelling out to run spamc, parsing the text etc.
4
+
5
+ Now you just need to:
6
+ require 'RubySpamAssassin'
7
+ include RubySpamAssassin
8
+
9
+ spam_client = SpamClient.new("host_running_spamd", "port_spamd_is_listening_on", timeout)
10
+ report = spam_client.report("some string here, or better yet a variable")
11
+ p report.inspect
12
+
13
+ Wasn't that easy?
14
+
15
+ Cucumber and rspec tests are on their way.
4
16
 
5
17
  == Contributing to RubySpamAssassin
6
18
 
@@ -14,6 +26,5 @@ Description goes here.
14
26
 
15
27
  == Copyright
16
28
 
17
- Copyright (c) 2011 Kevin. See LICENSE.txt for
18
- further details.
29
+ Copyright (c) 2011 Kevin Poorman. See LICENSE.txt for further details.
19
30
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{RubySpamAssassin}
8
- s.version = "0.1.0"
8
+ s.version = "0.1.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Kevin Poorman"]
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.0
1
+ 0.1.1
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: RubySpamAssassin
3
3
  version: !ruby/object:Gem::Version
4
- hash: 27
4
+ hash: 25
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 0
10
- version: 0.1.0
9
+ - 1
10
+ version: 0.1.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Kevin Poorman