whois 2.0.1 → 2.0.2
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/CHANGELOG.rdoc +8 -0
- data/LICENSE +2 -2
- data/README.rdoc +1 -1
- data/Rakefile +6 -7
- data/lib/whois/record/parser/whois.nic.it.rb +3 -0
- data/lib/whois/record/parser/whois.ripn.net.rb +2 -3
- data/lib/whois/record/parser.rb +1 -1
- data/lib/whois/version.rb +1 -1
- data/spec/fixtures/responses/whois.nic.it/property_status_unassignable.expected +8 -0
- data/spec/fixtures/responses/whois.nic.it/property_status_unassignable.txt +2 -0
- data/spec/fixtures/responses/whois.ripn.net/ru/status_registered.expected +8 -1
- data/spec/support/helpers/spec_helper.rb +16 -11
- data/spec/whois/record/parser/responses/whois.nic.it/property_status_unassignable_spec.rb +39 -0
- data/spec/whois/record/parser/responses/whois.ripn.net/ru/status_registered_spec.rb +8 -1
- data/whois.gemspec +5 -6
- metadata +8 -6
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: whois
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 2.0.
|
5
|
+
version: 2.0.2
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Simone Carletti
|
@@ -10,8 +10,7 @@ autorequire:
|
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
12
|
|
13
|
-
date: 2011-
|
14
|
-
default_executable:
|
13
|
+
date: 2011-04-11 00:00:00 Z
|
15
14
|
dependencies:
|
16
15
|
- !ruby/object:Gem::Dependency
|
17
16
|
name: rspec
|
@@ -47,7 +46,8 @@ dependencies:
|
|
47
46
|
type: :development
|
48
47
|
version_requirements: *id003
|
49
48
|
description: Whois is an intelligent WHOIS client and parser written in pure Ruby. It can query registry data for IPv4, IPv6 and top level domains, parse and convert responses into easy-to-use Ruby objects.
|
50
|
-
email:
|
49
|
+
email:
|
50
|
+
- weppos@weppos.net
|
51
51
|
executables:
|
52
52
|
- ruby-whois
|
53
53
|
extensions: []
|
@@ -941,6 +941,8 @@ files:
|
|
941
941
|
- spec/fixtures/responses/whois.nic.it/property_status_ok_autorenew.txt
|
942
942
|
- spec/fixtures/responses/whois.nic.it/property_status_pendingdelete.expected
|
943
943
|
- spec/fixtures/responses/whois.nic.it/property_status_pendingdelete.txt
|
944
|
+
- spec/fixtures/responses/whois.nic.it/property_status_unassignable.expected
|
945
|
+
- spec/fixtures/responses/whois.nic.it/property_status_unassignable.txt
|
944
946
|
- spec/fixtures/responses/whois.nic.it/property_technical_contact.expected
|
945
947
|
- spec/fixtures/responses/whois.nic.it/property_technical_contact.txt
|
946
948
|
- spec/fixtures/responses/whois.nic.it/response_unavailable.expected
|
@@ -1640,6 +1642,7 @@ files:
|
|
1640
1642
|
- spec/whois/record/parser/responses/whois.nic.it/property_status_ok_autorenew_spec.rb
|
1641
1643
|
- spec/whois/record/parser/responses/whois.nic.it/property_status_ok_spec.rb
|
1642
1644
|
- spec/whois/record/parser/responses/whois.nic.it/property_status_pendingdelete_spec.rb
|
1645
|
+
- spec/whois/record/parser/responses/whois.nic.it/property_status_unassignable_spec.rb
|
1643
1646
|
- spec/whois/record/parser/responses/whois.nic.it/property_technical_contact_spec.rb
|
1644
1647
|
- spec/whois/record/parser/responses/whois.nic.it/response_unavailable_spec.rb
|
1645
1648
|
- spec/whois/record/parser/responses/whois.nic.it/status_available_spec.rb
|
@@ -1829,7 +1832,6 @@ files:
|
|
1829
1832
|
- spec/whois/server/adapters/web_spec.rb
|
1830
1833
|
- spec/whois/server_spec.rb
|
1831
1834
|
- spec/whois/whois_spec.rb
|
1832
|
-
has_rdoc: true
|
1833
1835
|
homepage: http://www.ruby-whois.org
|
1834
1836
|
licenses: []
|
1835
1837
|
|
@@ -1853,7 +1855,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
1853
1855
|
requirements: []
|
1854
1856
|
|
1855
1857
|
rubyforge_project: whois
|
1856
|
-
rubygems_version: 1.
|
1858
|
+
rubygems_version: 1.7.2
|
1857
1859
|
signing_key:
|
1858
1860
|
specification_version: 3
|
1859
1861
|
summary: An intelligent pure Ruby WHOIS client and parser.
|