arin-rws 0.0.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.
Files changed (2) hide show
  1. data/lib/arin-rws.rb +25 -0
  2. metadata +65 -0
data/lib/arin-rws.rb ADDED
@@ -0,0 +1,25 @@
1
+ require 'rubygems'
2
+ require 'json'
3
+ require 'net/http'
4
+
5
+ class Arin
6
+ def initialize
7
+ @base_url = "http://whois.arin.net/rest"
8
+
9
+ @http = Net::HTTP.start("whois.arin.net", 80)
10
+ end
11
+
12
+ def query(url)
13
+ #resp = Net::HTTP.get_response(URI.parse(url))
14
+ begin
15
+ resp = @http.get("/rest#{url}")
16
+ result = JSON.parse(resp.body)
17
+ rescue
18
+ end
19
+ end
20
+
21
+ def lookup_ip(ip)
22
+ url = "/ip/#{ip}.json"
23
+ query(url)
24
+ end
25
+ end
metadata ADDED
@@ -0,0 +1,65 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: arin-rws
3
+ version: !ruby/object:Gem::Version
4
+ hash: 29
5
+ prerelease:
6
+ segments:
7
+ - 0
8
+ - 0
9
+ - 1
10
+ version: 0.0.1
11
+ platform: ruby
12
+ authors:
13
+ - Matt Thompson
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2012-04-26 00:00:00 Z
19
+ dependencies: []
20
+
21
+ description: ARIN Restful Web Services
22
+ email: mthompson@unveillance.com
23
+ executables: []
24
+
25
+ extensions: []
26
+
27
+ extra_rdoc_files: []
28
+
29
+ files:
30
+ - lib/arin-rws.rb
31
+ homepage: http://rubygems.org/gems/arin-rws
32
+ licenses: []
33
+
34
+ post_install_message:
35
+ rdoc_options: []
36
+
37
+ require_paths:
38
+ - lib
39
+ required_ruby_version: !ruby/object:Gem::Requirement
40
+ none: false
41
+ requirements:
42
+ - - ">="
43
+ - !ruby/object:Gem::Version
44
+ hash: 3
45
+ segments:
46
+ - 0
47
+ version: "0"
48
+ required_rubygems_version: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - ">="
52
+ - !ruby/object:Gem::Version
53
+ hash: 3
54
+ segments:
55
+ - 0
56
+ version: "0"
57
+ requirements: []
58
+
59
+ rubyforge_project:
60
+ rubygems_version: 1.8.23
61
+ signing_key:
62
+ specification_version: 3
63
+ summary: Arin-RWS
64
+ test_files: []
65
+