hip 0.1.0 → 0.2.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/Rakefile +1 -1
- data/VERSION +1 -1
- data/hip.gemspec +48 -0
- metadata +5 -4
data/Rakefile
CHANGED
|
@@ -19,7 +19,7 @@ Jeweler::Tasks.new do |gem|
|
|
|
19
19
|
gem.homepage = 'http://github.com/mattlenz/hip'
|
|
20
20
|
gem.license = 'MIT'
|
|
21
21
|
gem.summary = '(H)ostname to (IP)'
|
|
22
|
-
gem.description = 'Simple tool that takes a list of hostnames and outputs a newline-
|
|
22
|
+
gem.description = 'Simple tool that takes a list of hostnames and outputs a newline-delineated list of resolved IP addresses.'
|
|
23
23
|
gem.email = 'matt@mattlenz.com'
|
|
24
24
|
gem.authors = ['Matt Lenz']
|
|
25
25
|
gem.executables << 'hip'
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.
|
|
1
|
+
0.2.0
|
data/hip.gemspec
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# Generated by jeweler
|
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
|
+
# -*- encoding: utf-8 -*-
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |s|
|
|
7
|
+
s.name = "hip"
|
|
8
|
+
s.version = "0.2.0"
|
|
9
|
+
|
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
+
s.authors = ["Matt Lenz"]
|
|
12
|
+
s.date = "2012-06-11"
|
|
13
|
+
s.description = "Simple tool that takes a list of hostnames and outputs a newline-delineated list of resolved IP addresses."
|
|
14
|
+
s.email = "matt@mattlenz.com"
|
|
15
|
+
s.executables = ["hip", "hip"]
|
|
16
|
+
s.extra_rdoc_files = [
|
|
17
|
+
"LICENSE.txt",
|
|
18
|
+
"README.md"
|
|
19
|
+
]
|
|
20
|
+
s.files = [
|
|
21
|
+
"Gemfile",
|
|
22
|
+
"Gemfile.lock",
|
|
23
|
+
"LICENSE.txt",
|
|
24
|
+
"README.md",
|
|
25
|
+
"Rakefile",
|
|
26
|
+
"VERSION",
|
|
27
|
+
"bin/hip",
|
|
28
|
+
"hip.gemspec"
|
|
29
|
+
]
|
|
30
|
+
s.homepage = "http://github.com/mattlenz/hip"
|
|
31
|
+
s.licenses = ["MIT"]
|
|
32
|
+
s.require_paths = ["lib"]
|
|
33
|
+
s.rubygems_version = "1.8.24"
|
|
34
|
+
s.summary = "(H)ostname to (IP)"
|
|
35
|
+
|
|
36
|
+
if s.respond_to? :specification_version then
|
|
37
|
+
s.specification_version = 3
|
|
38
|
+
|
|
39
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
|
40
|
+
s.add_development_dependency(%q<jeweler>, ["~> 1.8.3"])
|
|
41
|
+
else
|
|
42
|
+
s.add_dependency(%q<jeweler>, ["~> 1.8.3"])
|
|
43
|
+
end
|
|
44
|
+
else
|
|
45
|
+
s.add_dependency(%q<jeweler>, ["~> 1.8.3"])
|
|
46
|
+
end
|
|
47
|
+
end
|
|
48
|
+
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: hip
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2012-06-
|
|
12
|
+
date: 2012-06-11 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: jeweler
|
|
@@ -27,7 +27,7 @@ dependencies:
|
|
|
27
27
|
- - ~>
|
|
28
28
|
- !ruby/object:Gem::Version
|
|
29
29
|
version: 1.8.3
|
|
30
|
-
description: Simple tool that takes a list of hostnames and outputs a newline-
|
|
30
|
+
description: Simple tool that takes a list of hostnames and outputs a newline-delineated
|
|
31
31
|
list of resolved IP addresses.
|
|
32
32
|
email: matt@mattlenz.com
|
|
33
33
|
executables:
|
|
@@ -44,6 +44,7 @@ files:
|
|
|
44
44
|
- Rakefile
|
|
45
45
|
- VERSION
|
|
46
46
|
- bin/hip
|
|
47
|
+
- hip.gemspec
|
|
47
48
|
homepage: http://github.com/mattlenz/hip
|
|
48
49
|
licenses:
|
|
49
50
|
- MIT
|
|
@@ -59,7 +60,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
59
60
|
version: '0'
|
|
60
61
|
segments:
|
|
61
62
|
- 0
|
|
62
|
-
hash: -
|
|
63
|
+
hash: -430889303074571775
|
|
63
64
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
64
65
|
none: false
|
|
65
66
|
requirements:
|