RubySpamAssassin 0.1.0 → 0.1.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/README.rdoc +14 -3
- data/RubySpamAssassin.gemspec +1 -1
- data/VERSION +1 -1
- metadata +3 -3
data/README.rdoc
CHANGED
@@ -1,6 +1,18 @@
|
|
1
1
|
= RubySpamAssassin
|
2
2
|
|
3
|
-
|
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
|
|
data/RubySpamAssassin.gemspec
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
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:
|
4
|
+
hash: 25
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 1
|
9
|
-
-
|
10
|
-
version: 0.1.
|
9
|
+
- 1
|
10
|
+
version: 0.1.1
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Kevin Poorman
|