net-dns-rbl 0.1.0

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 ADDED
File without changes
@@ -0,0 +1 @@
1
+ Dir.chdir(File.dirname(__FILE__)) { Dir['buzzcore/*.rb'] }.each {|f| require f }
@@ -0,0 +1,19 @@
1
+ LISTS = %w[
2
+
3
+ bl.spamcop.net
4
+ blackholes.mail-abuse.org
5
+ dews.qmail.org
6
+ dialups.mail-abuse.org
7
+ relays.mail-abuse.org
8
+ sbl.spamhaus.org
9
+ sbl-xbl.spamhaus.org
10
+ vbl.messagelabs.com
11
+ xbl.spamhaus.org
12
+ zen.spamhaus.org
13
+ ix.dnsbl.manitu.net
14
+ mutli.surbl.org
15
+ ubl.lashback.com
16
+ 0spam.fusionzero.com
17
+ cbl.abuseat.org
18
+
19
+ ]
@@ -0,0 +1,22 @@
1
+ require 'dnsblconstants'
2
+
3
+ module net-dns-rbl
4
+ class Netcheck
5
+
6
+ def addList
7
+ end
8
+
9
+ def removeList
10
+
11
+ end
12
+
13
+ def performLookups
14
+
15
+ end
16
+
17
+ def setListHash
18
+
19
+ end
20
+
21
+ end
22
+ end
@@ -0,0 +1,7 @@
1
+ module Net
2
+ module Dns
3
+ module Rbl
4
+ VERSION = "0.1.0"
5
+ end
6
+ end
7
+ end
metadata ADDED
@@ -0,0 +1,52 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: net-dns-rbl
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Joseph Lombardo
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2012-02-20 00:00:00.000000000Z
13
+ dependencies: []
14
+ description: ! "By passing in an ip address string, multiple blacklists are checked
15
+ \n for existence. Lists can be added and removed and invocation
16
+ time as for \n now the lists are static.\n "
17
+ email:
18
+ - me@joseph-lombardo.com
19
+ executables: []
20
+ extensions: []
21
+ extra_rdoc_files: []
22
+ files:
23
+ - lib/net-dns-rbl/dnsblconstants.rb
24
+ - lib/net-dns-rbl/netcheck.rb
25
+ - lib/net-dns-rbl/version.rb
26
+ - lib/net-dns-rbl.rb
27
+ - README
28
+ homepage: http://rubygems.org/gems/net-dns-rbl
29
+ licenses: []
30
+ post_install_message:
31
+ rdoc_options: []
32
+ require_paths:
33
+ - lib
34
+ required_ruby_version: !ruby/object:Gem::Requirement
35
+ none: false
36
+ requirements:
37
+ - - ! '>='
38
+ - !ruby/object:Gem::Version
39
+ version: '0'
40
+ required_rubygems_version: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ! '>='
44
+ - !ruby/object:Gem::Version
45
+ version: '0'
46
+ requirements: []
47
+ rubyforge_project:
48
+ rubygems_version: 1.8.10
49
+ signing_key:
50
+ specification_version: 3
51
+ summary: Utility gem to perform lookups against dns blacklists
52
+ test_files: []