pwhois 1.0.1 → 1.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.
- checksums.yaml +4 -4
- data/.codeclimate.yml +23 -0
- data/.rubocop.yml +1168 -0
- data/bin/pwhois +14 -196
- data/lib/pwhois.rb +189 -0
- data/lib/pwhois/version.rb +8 -0
- data/pwhois.gemspec +15 -5
- metadata +15 -8
metadata
CHANGED
@@ -1,30 +1,33 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pwhois
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0
|
4
|
+
version: 1.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Seth Wright
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2016-01-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: whois
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- -
|
17
|
+
- - ~>
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '
|
19
|
+
version: '3.6'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- -
|
24
|
+
- - ~>
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: '
|
27
|
-
description:
|
26
|
+
version: '3.6'
|
27
|
+
description: |2
|
28
|
+
pwhois is a small command-line utility that takes advantage of the
|
29
|
+
whois module to parse WHOIS results and display them in a
|
30
|
+
consistent, coherent style.
|
28
31
|
email:
|
29
32
|
- seth@crosse.org
|
30
33
|
executables:
|
@@ -32,12 +35,16 @@ executables:
|
|
32
35
|
extensions: []
|
33
36
|
extra_rdoc_files: []
|
34
37
|
files:
|
38
|
+
- .codeclimate.yml
|
35
39
|
- .gitignore
|
40
|
+
- .rubocop.yml
|
36
41
|
- Gemfile
|
37
42
|
- LICENSE
|
38
43
|
- README.md
|
39
44
|
- Rakefile
|
40
45
|
- bin/pwhois
|
46
|
+
- lib/pwhois.rb
|
47
|
+
- lib/pwhois/version.rb
|
41
48
|
- pwhois.gemspec
|
42
49
|
homepage: https://github.com/Crosse/pwhois
|
43
50
|
licenses:
|
@@ -62,5 +69,5 @@ rubyforge_project:
|
|
62
69
|
rubygems_version: 2.0.14
|
63
70
|
signing_key:
|
64
71
|
specification_version: 4
|
65
|
-
summary:
|
72
|
+
summary: A WHOIS client that provides consistent and coherent results.
|
66
73
|
test_files: []
|