net-ping 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.
data/CHANGES CHANGED
@@ -1,3 +1,6 @@
1
+ == 1.0.1 - 22-Jun-2005
2
+ * Bug fix for the install.rb file. The gem is unaffected.
3
+
1
4
  == 1.0.0 - 14-Jun-2005
2
5
  * Renamed project from net-pingsimple to just net-ping.
3
6
  * Added a PingHTTP subclass.
data/lib/net/ping.rb CHANGED
@@ -4,7 +4,7 @@ require "timeout"
4
4
  module Net
5
5
  # An abstract base class. Do not instantiate directly.
6
6
  class Ping
7
- VERSION = "1.0.0"
7
+ VERSION = "1.0.1"
8
8
  attr_accessor :host, :port, :timeout
9
9
  attr_reader :exception, :warning
10
10
 
@@ -23,7 +23,7 @@ class TC_PingExternal < Test::Unit::TestCase
23
23
  end
24
24
 
25
25
  def test_version
26
- assert_equal("1.0.0", PingExternal::VERSION, "Bad version constant")
26
+ assert_equal("1.0.1", PingExternal::VERSION, "Bad version constant")
27
27
  end
28
28
 
29
29
  def test_ping
data/test/tc_pinghttp.rb CHANGED
@@ -22,7 +22,7 @@ class TC_PingHTTP < Test::Unit::TestCase
22
22
  end
23
23
 
24
24
  def test_version
25
- assert_equal("1.0.0", PingHTTP::VERSION, "Bad version constant")
25
+ assert_equal("1.0.1", PingHTTP::VERSION, "Bad version constant")
26
26
  end
27
27
 
28
28
  def test_ping
data/test/tc_pingtcp.rb CHANGED
@@ -21,7 +21,7 @@ class TC_PingTCP < Test::Unit::TestCase
21
21
  end
22
22
 
23
23
  def test_version
24
- assert_equal("1.0.0", PingTCP::VERSION, "Bad version constant")
24
+ assert_equal("1.0.1", PingTCP::VERSION, "Bad version constant")
25
25
  end
26
26
 
27
27
  def test_ping
data/test/tc_pingudp.rb CHANGED
@@ -24,7 +24,7 @@ class TC_PingUDP < Test::Unit::TestCase
24
24
  end
25
25
 
26
26
  def test_version
27
- assert_equal("1.0.0", PingUDP::VERSION, "Bad version constant")
27
+ assert_equal("1.0.1", PingUDP::VERSION, "Bad version constant")
28
28
  end
29
29
 
30
30
  def test_ping
metadata CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.8.10
3
3
  specification_version: 1
4
4
  name: net-ping
5
5
  version: !ruby/object:Gem::Version
6
- version: 1.0.0
7
- date: 2005-06-14
6
+ version: 1.0.1
7
+ date: 2005-06-22
8
8
  summary: A ping interface for Ruby
9
9
  require_paths:
10
10
  - lib