net-ping 1.3.3-x86-mingw32 → 1.3.4-x86-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.
- data/CHANGES +3 -0
- data/lib/net/ping.rb +1 -1
- data/lib/net/ping/ping.rb +1 -1
- data/net-ping.gemspec +1 -1
- data/test/test_net_ping.rb +1 -1
- metadata +3 -3
data/CHANGES
CHANGED
@@ -1,3 +1,6 @@
|
|
1
|
+
== 1.3.4 - 25-Jun-2010
|
2
|
+
* Fixed a dumb platform bug. Thanks go to Jason Frey for the spot.
|
3
|
+
|
1
4
|
== 1.3.3 - 21-Jun-2010
|
2
5
|
* Bug fixes for JRuby on MS Windows. The code now explicitly checks for JRuby
|
3
6
|
in a few places to ensure it doesn't try to load unsupported libraries
|
data/lib/net/ping.rb
CHANGED
@@ -11,7 +11,7 @@ require File.join(File.dirname(__FILE__), 'ping/external')
|
|
11
11
|
require File.join(File.dirname(__FILE__), 'ping/http')
|
12
12
|
|
13
13
|
if Config::CONFIG['host_os'] =~ /msdos|mswin|cygwin|mingw|win32/i &&
|
14
|
-
|
14
|
+
RUBY_PLATFORM != 'java'
|
15
15
|
then
|
16
16
|
require File.join(File.dirname(__FILE__), 'ping/wmi')
|
17
17
|
end
|
data/lib/net/ping/ping.rb
CHANGED
data/net-ping.gemspec
CHANGED
data/test/test_net_ping.rb
CHANGED
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 1
|
7
7
|
- 3
|
8
|
-
-
|
9
|
-
version: 1.3.
|
8
|
+
- 4
|
9
|
+
version: 1.3.4
|
10
10
|
platform: x86-mingw32
|
11
11
|
authors:
|
12
12
|
- Daniel J. Berger
|
@@ -14,7 +14,7 @@ autorequire:
|
|
14
14
|
bindir: bin
|
15
15
|
cert_chain: []
|
16
16
|
|
17
|
-
date: 2010-06-
|
17
|
+
date: 2010-06-25 00:00:00 -06:00
|
18
18
|
default_executable:
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|