findmyips 1.0.0 → 1.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.
- checksums.yaml +8 -8
- data/.ruby-gemset +1 -1
- data/VERSION +1 -1
- data/bin/{whatismyip.sh → findmyips.sh} +1 -1
- data/findmyips.gemspec +8 -8
- data/spec/{whatismyip_spec.rb → findmyips_spec.rb} +1 -1
- data/spec/spec_helper.rb +1 -1
- metadata +7 -7
- /data/bin/{whatismyip → findmyips} +0 -0
- /data/features/{whatismyip.feature → findmyips.feature} +0 -0
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
ZDdiZGNlNWJmMjVjZDJiNTNmNDc5MmQ2Zjk3YjNjZGM5NTdkYTMyMQ==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
NWY1ZmEwYmZiZDBlNjAzYTAxZWM3YjI5ZDQwMzVjY2NjMWEyMzZlYQ==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
NGU5ZjhlYmUxNGQzMTc2MDNhZmM3OThmODg0ZTFlZjM5OGM3MjNlOTVhYjY4
|
|
10
|
+
NjU5MjM4YTdkNTJiZjY0OWExNTBmNmU5YjM2YWQxZDU3ZjNjNjkyMGUwMzQy
|
|
11
|
+
NzgyNjFmYjc4OTdlN2ExYTA2OTQ4NDkxOWFhMWIyNDJjMTlhYmY=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
NGU5NGMxN2M5YzBhNWYwYzZjZDY3NTY5NWNjNzY4MDVmNjg1ZWUxODg4OGQy
|
|
14
|
+
MGVmMTM2Y2ZhNDU4ZTA1Y2M5Nzk4ZDUzOTYwMTFhZjg2MDljOGRhMjYyZWEw
|
|
15
|
+
NDdlYTViOWM1MmIzOGFjZDM3ZjliYjhkN2FhOWY4MmE5ZDNjOGE=
|
data/.ruby-gemset
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
findmyips
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.1
|
data/findmyips.gemspec
CHANGED
|
@@ -2,18 +2,18 @@
|
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
3
|
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
|
-
# stub: findmyips 1.0.
|
|
5
|
+
# stub: findmyips 1.0.1 ruby lib
|
|
6
6
|
|
|
7
7
|
Gem::Specification.new do |s|
|
|
8
8
|
s.name = "findmyips"
|
|
9
|
-
s.version = "1.0.
|
|
9
|
+
s.version = "1.0.1"
|
|
10
10
|
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
12
12
|
s.authors = ["Christo De Lange"]
|
|
13
13
|
s.date = "2013-10-07"
|
|
14
14
|
s.description = "Look up my IP address"
|
|
15
15
|
s.email = "github@dldinternet.com"
|
|
16
|
-
s.executables = ["
|
|
16
|
+
s.executables = ["findmyips", "findmyips.sh"]
|
|
17
17
|
s.extra_rdoc_files = [
|
|
18
18
|
"LICENSE.txt",
|
|
19
19
|
"README.rdoc"
|
|
@@ -29,15 +29,15 @@ Gem::Specification.new do |s|
|
|
|
29
29
|
"README.rdoc",
|
|
30
30
|
"Rakefile",
|
|
31
31
|
"VERSION",
|
|
32
|
-
"bin/
|
|
33
|
-
"bin/
|
|
32
|
+
"bin/findmyips",
|
|
33
|
+
"bin/findmyips.sh",
|
|
34
|
+
"features/findmyips.feature",
|
|
34
35
|
"features/step_definitions/whatismyip_steps.rb",
|
|
35
36
|
"features/support/env.rb",
|
|
36
|
-
"features/whatismyip.feature",
|
|
37
37
|
"findmyips.gemspec",
|
|
38
38
|
"lib/dldinternet/Net/findmyips.rb",
|
|
39
|
-
"spec/
|
|
40
|
-
"spec/
|
|
39
|
+
"spec/findmyips_spec.rb",
|
|
40
|
+
"spec/spec_helper.rb"
|
|
41
41
|
]
|
|
42
42
|
s.homepage = "http://github.com/dldinternet/findmyips"
|
|
43
43
|
s.licenses = ["MIT"]
|
data/spec/spec_helper.rb
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
|
2
2
|
$LOAD_PATH.unshift(File.dirname(__FILE__))
|
|
3
3
|
require 'rspec'
|
|
4
|
-
require '
|
|
4
|
+
require 'dldinternet/net/findmyips'
|
|
5
5
|
|
|
6
6
|
# Requires supporting files with custom matchers and macros, etc,
|
|
7
7
|
# in ./support/ and its subdirectories.
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: findmyips
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Christo De Lange
|
|
@@ -115,8 +115,8 @@ dependencies:
|
|
|
115
115
|
description: Look up my IP address
|
|
116
116
|
email: github@dldinternet.com
|
|
117
117
|
executables:
|
|
118
|
-
-
|
|
119
|
-
-
|
|
118
|
+
- findmyips
|
|
119
|
+
- findmyips.sh
|
|
120
120
|
extensions: []
|
|
121
121
|
extra_rdoc_files:
|
|
122
122
|
- LICENSE.txt
|
|
@@ -132,15 +132,15 @@ files:
|
|
|
132
132
|
- README.rdoc
|
|
133
133
|
- Rakefile
|
|
134
134
|
- VERSION
|
|
135
|
-
- bin/
|
|
136
|
-
- bin/
|
|
135
|
+
- bin/findmyips
|
|
136
|
+
- bin/findmyips.sh
|
|
137
|
+
- features/findmyips.feature
|
|
137
138
|
- features/step_definitions/whatismyip_steps.rb
|
|
138
139
|
- features/support/env.rb
|
|
139
|
-
- features/whatismyip.feature
|
|
140
140
|
- findmyips.gemspec
|
|
141
141
|
- lib/dldinternet/Net/findmyips.rb
|
|
142
|
+
- spec/findmyips_spec.rb
|
|
142
143
|
- spec/spec_helper.rb
|
|
143
|
-
- spec/whatismyip_spec.rb
|
|
144
144
|
homepage: http://github.com/dldinternet/findmyips
|
|
145
145
|
licenses:
|
|
146
146
|
- MIT
|
|
File without changes
|
|
File without changes
|