net-ping 1.7.0-universal-mingw32 → 1.7.1-universal-mingw32
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/CHANGES +4 -0
- data/README +3 -0
- data/lib/net/ping/ping.rb +1 -1
- data/lib/net/ping/tcp.rb +1 -2
- data/net-ping.gemspec +1 -1
- data/test/test_net_ping.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
YjY2MWI5ZjlmNDZmMGM5MDVlYTg2ZGQ2NWY5Y2FmMjQyY2M2NjVjNQ==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
ODVjZTkzNzc5MDAxZDUyMDU3N2IyY2QxNTJkMjE4ZjAxNjQzNzYwYg==
|
7
7
|
!binary "U0hBNTEy":
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
OTc5MmFjMzM5NGE1MWZmMTVhNjBiZDdlZjBiY2Q3YTEzZTdhM2E4NjEyMTI3
|
10
|
+
YTcxNDQ1ZDU5YjFhYTg2N2Q4OGM2ZmUzMzg2MjNkNTYyZDQ5ZDI0NzU2Mjlk
|
11
|
+
YzJiNjUzNTQ5ZmM1Y2ZkMzYyMDY0YTIzN2EzYzZlOTIzYTg2NTY=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
YjRkNzBhN2I4NjUyYjJhZWZlNjY0NDhhNGJlN2E3NTQ4NjFkZTkwMWE0MjBk
|
14
|
+
ODZmZDZhMDBkYzQzYTNlMzAzNWY3NTEwYmQyNWE0MWZlZjZhZjI0YjkzZjI4
|
15
|
+
YjYyYWRhOTFiODA4YTdhMzg2MDkzZWEyZjYyNWFkMDljNmMyMjI=
|
data/CHANGES
CHANGED
@@ -1,3 +1,7 @@
|
|
1
|
+
== 1.7.1 - 26-Sep-2013
|
2
|
+
* Fixed a bug in the Ping::TCP class where it could return nil instead
|
3
|
+
of false. Thanks go to Grandy Nguyen for the patch.
|
4
|
+
|
1
5
|
== 1.7.0 - 25-Aug-2013
|
2
6
|
* Now requires Ruby 1.9.x or later.
|
3
7
|
* Replaced the main ping code for the Ping::TCP class. The timeout module
|
data/README
CHANGED
@@ -45,6 +45,9 @@
|
|
45
45
|
JRuby 1.6.7 or later is required for external pings because of a bug
|
46
46
|
in earlier versions with open3 and stream handling.
|
47
47
|
|
48
|
+
ICMP pings are not thread safe. See https://www.ruby-forum.com/topic/146116.
|
49
|
+
Patches welcome.
|
50
|
+
|
48
51
|
== License
|
49
52
|
Artistic 2.0
|
50
53
|
|
data/lib/net/ping/ping.rb
CHANGED
data/lib/net/ping/tcp.rb
CHANGED
data/net-ping.gemspec
CHANGED
data/test/test_net_ping.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: net-ping
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.7.
|
4
|
+
version: 1.7.1
|
5
5
|
platform: universal-mingw32
|
6
6
|
authors:
|
7
7
|
- Daniel J. Berger
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-
|
11
|
+
date: 2013-09-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: ffi
|