net-ping 1.7.1-universal-mingw32 → 1.7.2-universal-mingw32

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,15 +1,7 @@
1
1
  ---
2
- !binary "U0hBMQ==":
3
- metadata.gz: !binary |-
4
- YjY2MWI5ZjlmNDZmMGM5MDVlYTg2ZGQ2NWY5Y2FmMjQyY2M2NjVjNQ==
5
- data.tar.gz: !binary |-
6
- ODVjZTkzNzc5MDAxZDUyMDU3N2IyY2QxNTJkMjE4ZjAxNjQzNzYwYg==
7
- !binary "U0hBNTEy":
8
- metadata.gz: !binary |-
9
- OTc5MmFjMzM5NGE1MWZmMTVhNjBiZDdlZjBiY2Q3YTEzZTdhM2E4NjEyMTI3
10
- YTcxNDQ1ZDU5YjFhYTg2N2Q4OGM2ZmUzMzg2MjNkNTYyZDQ5ZDI0NzU2Mjlk
11
- YzJiNjUzNTQ5ZmM1Y2ZkMzYyMDY0YTIzN2EzYzZlOTIzYTg2NTY=
12
- data.tar.gz: !binary |-
13
- YjRkNzBhN2I4NjUyYjJhZWZlNjY0NDhhNGJlN2E3NTQ4NjFkZTkwMWE0MjBk
14
- ODZmZDZhMDBkYzQzYTNlMzAzNWY3NTEwYmQyNWE0MWZlZjZhZjI0YjkzZjI4
15
- YjYyYWRhOTFiODA4YTdhMzg2MDkzZWEyZjYyNWFkMDljNmMyMjI=
2
+ SHA1:
3
+ metadata.gz: 1a3341d15d56ed8ffa252c68d41c12d69a045e44
4
+ data.tar.gz: a2de87f4ac41a0846aa04e49b8db3f78e7dfe75d
5
+ SHA512:
6
+ metadata.gz: 5ba4bca286d6d7e141f0188ad57b6c419de98bd823d0ca374ad5171afbb59d9f5f0f51b45a390f139e536378deb6fff927f962502eda6516a9c434a6a5eadc9c
7
+ data.tar.gz: cff710cc4bdf5b0a0868ddc3d4c92e4c43563352e463dbe9a2d44c319f4caa0dce225b4d6ce94e8be278ed61645bb86bb5759c31296445d2d2fdfa3204763898
data/CHANGES CHANGED
@@ -1,298 +1,309 @@
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
-
5
- == 1.7.0 - 25-Aug-2013
6
- * Now requires Ruby 1.9.x or later.
7
- * Replaced the main ping code for the Ping::TCP class. The timeout module
8
- really doesn't work very well with sockets, and so a raw socket approach
9
- combined with IO.select is now used instead.
10
- * Updates to the doc/ping.txt file.
11
-
12
- == 1.6.2 - 8-Aug-2013
13
- * Fixed a bug in the ICMP ping helper module. Thanks go to Yuichi
14
- Tsunematsu for the spot.
15
- * The win32-security library is not just a development dependency. Thanks
16
- again go to Yuichi Tsunematsu for the spot.
17
- * Updated the icmp ping tests.
18
- * Updated the gemspec for MS Windows.
19
-
20
- == 1.6.1 - 17-Jul-2013
21
- * Automatically set the scheme to "http" if not present when performing
22
- HTTP pings. See https://bugs.ruby-lang.org/issues/8645 for an issue
23
- with the uri library that led to this change. Thanks go to Preston Lee
24
- for the spot.
25
- * Removed the windows/system_info dependency, since it added other
26
- dependencies just to check the Windows version. Instead, I added a
27
- helper file that adds some needed Windows functions using FFI.
28
- * Added Rake as a development dependency and updated the Gemfile
29
- source because Bundler. Thanks to Jean-Philippe Doyle for the patches.
30
- * Added some warning text to the Net::Ping::External tests for users
31
- who are using OpenDNS. In short, you will probably get test failures
32
- and surprising true results for bad hosts.
33
-
34
- == 1.6.0 - 19-Mar-2013
35
- * Split out the ldap portion of the code into its own branch.
36
- * Don't require resolv-replace on Ruby 1.9.3 or later.
37
- * Now gets proxy information from the http_proxy, https_proxy, and
38
- no_proxy environment variables and uses that when making requests.
39
- Thanks go to Kevin Olbrich for the patch.
40
-
41
- == 1.5.3 - 29-Feb-2012
42
- * Removed the Windows::Console dependency and replaced it with FFI since there
43
- were only two functions needed. This had the nice side effect of making it
44
- work with JRuby, too.
45
- * Minor cleanup on some multi-variable assignment.
46
- * Fixed require statements and one test for 1.9.
47
-
48
- == 1.5.2 - 4-Nov-2011
49
- * The Net::Ping::HTTP class now defaults to using HEAD instead of GET
50
- for its ping test. You can alter this via the get_request accessor.
51
- Thanks got to Balazs Kutil for the patch.
52
- * Added the ssl_verify_mode accessor to the Net::Ping::HTTP class, which
53
- defaults to VERIFY_NONE. This fixes possible warnings resulting from
54
- missing SSL certificates when using https. Thanks go to Balazs Kutil
55
- for the patch.
56
-
57
- == 1.5.1 - 15-Sep-2011
58
- * Use RbConfig on Ruby 1.9 and later. Thanks go to Torsten Schönebaum
59
- for the patch.
60
-
61
- == 1.5.0 - 3-May-2011
62
- * Added the Net::Ping::LDAP class which allows you to perform LDAP pings.
63
- Thanks go to Paul Gallagher for adding this.
64
- * The duration instance variable is now reset to nil on a failed ping. Again,
65
- thanks go to Paul Gallagher.
66
-
67
- == 1.4.1 - 17-Mar-2011
68
- * Incorporated changes from Lukas Zapletal that alters the icmp tests to use
69
- your localhost instead of going outside the network.
70
- * The http tests were similarly modified courtesy of fakeweb, which is now a
71
- development dependency. Again, change from Lukas Zapletal.
72
- * The icmp tests were reworked for Windows Vista and later. This required the
73
- addition of the win32-security library as a development dependency.
74
- * The Net::Ping::WMI class is no longer skipped on require or in tests since
75
- JRuby now supports win32ole.
76
-
77
- == 1.4.0 - 14-Feb-2011
78
- * Added the redirect_limit accessor for the Net::Ping::HTTP class. This caps
79
- the number of redirects that are allowed before a ping is considered a
80
- failure. The default is 5.
81
- * Changed the way in which redirects are detected. Previously I was checking
82
- against the response class, but decided this was unreliable. I now check the
83
- response code itself. Any code in the 300 range is considered a redirect.
84
- * The default port for the Net::Ping::HTTP class is no longer explicitly set
85
- to 80, but instead uses the result of the URI.parse(uri).port method by
86
- default. Note that you can still override the port if you explicitly provide
87
- one in the constructor.
88
- * The Net::Ping::HTTP class now handles https URI's properly. Note that you may
89
- get a warning about peer certificates.
90
-
91
- == 1.3.7 - 14-Oct-2010
92
- * Wrapped the ICMP ping in a while loop that breaks on success to prevent
93
- the ping from failing too early. Thanks go to Benny Holmgren for the
94
- spot and the patch.
95
-
96
- == 1.3.6 - 4-Sep-2010
97
- * Fixed variable naming issue in Net::Ping::External. Thanks go to taw
98
- for the spot.
99
- * Added a default Rake task.
100
- * Refactored the tests for Net::Ping::External to take advantage of the
101
- features of test-unit 2.x.
102
-
103
- == 1.3.5 - 3-Sep-2010
104
- * Allow for custom user agent in Net::Ping::HTTP. Thanks go to Michael
105
- Reinsch for the patch.
106
-
107
- == 1.3.4 - 25-Jun-2010
108
- * Fixed a dumb platform bug. Thanks go to Jason Frey for the spot.
109
-
110
- == 1.3.3 - 21-Jun-2010
111
- * Bug fixes for JRuby on MS Windows. The code now explicitly checks for JRuby
112
- in a few places to ensure it doesn't try to load unsupported libraries
113
- on MS Windows. Thanks go to Rob Schultz for the spot and some patches.
114
- * The Net::Ping::HTTP class will no longer fail because a root URI
115
- is missing a trailing slash. If the URI#path is empty, it now defaults
116
- to the root path.
117
- * The Rakefile tasks and naming were refactored.
118
- * Some tests were refactored to take advantage of test-unit 2.x features,
119
- as well as make them better and more descriptive in general.
120
-
121
- == 1.3.2 - 21-Sep-2009
122
- * Doing a 'require "net/ping"' was not automatically loading the
123
- Net::Ping::WMI class on MS Windows. This has been fixed. Thanks go to
124
- Joseph M. for the spot.
125
- * Removed all $LOAD_PATH mangling for both the library and tests.
126
- * Fixed a bug in the Net::Ping::HTTP class where a failed redirect did
127
- not set the @exception and @warning instance variables properly.
128
- * The PingStatus struct returned by Net::Ping::WMI is now frozen.
129
- * The test-unit library was switched from a runtime dependency to a
130
- development dependency.
131
- * Added the :gem Rake task that builds a gem.
132
- * Updated the :gem_install task to use the :gem task as a prerequisite.
133
- * Updated the dependencies for MS Windows.
134
- * The Rake test tasks are now more Rakish, e.g. test:tcp instead of test_tcp.
135
- * Renamed example file names to avoid any potential confusion with actual
136
- test files.
137
-
138
- == 1.3.1 - 22-Jul-2009
139
- * Removed class aliases, e.g. use Ping::External, not PingExternal.
140
- * Minor code change to eliminate a warning that popped up in 1.9.x.
141
- * The win32-open3 library is removed as a dependency for Ruby 1.9.x.
142
- * Changed license to Artistic 2.0.
143
- * Some gemspec and README updates.
144
-
145
- == 1.3.0 - 19-May-2009
146
- * Added the Ping::WMI class for MS Windows. This class encapsulates the
147
- Win32_PingStatus WMI class. Unlike other ping methods, this one returns
148
- a struct that contains various bits of information.
149
- * The Net::Ping::External class now ensures that handles opened by the open3
150
- call are closed. Thanks go to Nick S. Kanakakorn for the spot and a
151
- preliminary patch.
152
- * The Net::Ping::ICMP class now explicitly closes the socket if the call to
153
- the Socket.pack_sockaddr_in method fails.
154
- * Some documentation updates.
155
-
156
- == 1.2.3 - 13-Jan-2008
157
- * Fixed a bug in the checksum private method where it would die on odd data
158
- sizes. Thanks go to Jake Douglas for the spot.
159
- * A Socket.get_sockaddr_in call in the Ping::ICMP class is no longer included
160
- as part of the overall ping time. Thanks go again to Jake Douglas for
161
- the spot.
162
- * Added data_size tests to the Ping::ICMP test suite.
163
- * Renamed and updated the test files. The test-unit 2.x gem is now a
164
- prerequisite as a result.
165
-
166
- == 1.2.2 - 22-Jan-2008
167
- * Bug fix for Ping::External where it was not honoring the timeout value.
168
- Thanks go to Chris Morris for the spot and the patch.
169
- * Bug fix for Ping::External where non-English output could cause false
170
- positives on MS Windows Vista or later. This library now requires the
171
- windows-pr library on MS Windows systems as a result.
172
- * Added the Ping::UDP.service_check and Ping::UDP.service_check= class
173
- methods. This method controls whether or not Errno::ECONNREFUSED or
174
- Errno::ECONNRESET are considered successful pings or not.
175
- * The Ping::HTTP class no longer uses the resolv-replace library on MS Windows
176
- because it was (ironically) causing timeouts.
177
- * Changed the Ping::TCP.econnrefused method to Ping::TCP.service_check. I
178
- changed it because I now use a similar method in Ping::UDP, but that handles
179
- more than Errno::ECONNREFUSED. An alias is provided to provide backwards
180
- compatibility, but it is considered deprecated and will be removed in the
181
- 1.3.0 release.
182
- * Removed the install.rb file. The Rakefile now handles installation.
183
-
184
- == 1.2.1 - 6-Apr-2007
185
- * For the Ping::External class, if a ping attempt results in 100% packet loss
186
- it is now considered a failed ping, regardless of whether or not an error
187
- was sent to stdout.
188
- * Fixed the Ping::External class for OS X.
189
- * Added a Rakefile. Installation and testing should now be run via Rake tasks.
190
- * Minor fix for the Ping::ICMP class where I had accidentally dup'd some
191
- aliases. This was harmless, but did cause warnings with -w.
192
-
193
- == 1.2.0 - 5-Dec-2006
194
- * Internal reorganization - each class now lives in its own file.
195
- * Added the Ping::ICMP class. Thanks go to Jos Backus for contributing a
196
- large part of the code.
197
- * The host argument is now optional in the constructor. You can now specify
198
- it in the ping method instead. Note that it must be specified in one place
199
- or the other.
200
- * Each PingXXX class is now Ping::XXX instead. However, class name aliases
201
- have been setup for backwards compatibility for now.
202
- * The constructor for each Ping types now yields self.
203
- * Added the pingecho alias for the ping method for each Ping type.
204
- * Added the Ping::HTTP#follow_redirect accessor.
205
- * The Ping::HTTP#ping method now honors the timeout value.
206
- * The Ping::HTTP class now follows redirects automatically, though this is
207
- configurable with the follow_redirect accessor.
208
- * The Ping::TCP.ecr and Ping::TCP.ecr= methods are now true class method
209
- aliases (they were just wrappers previously).
210
- * The Ping::UDP class now enforces a 64 character limit on data that can be
211
- sent on a udp ping.
212
- * Updated the gemspec. Specifically, MS Windows now has a dependency on
213
- the win32-open3 package.
214
- * Added inline rdoc.
215
-
216
- == 1.1.1 - 15-Jun-2006
217
- * Fixed a bug in PingTCP (bad variable name). Thanks go to Anoop Chandran
218
- for the spot.
219
- * Minor variable name refactoring.
220
- * Minor test updates.
221
-
222
- == 1.1.0 - 17-Jul-2005
223
- * Fixed a bug in the PingHTTP#ping method where I was accidentally passing
224
- the timeout value instead of the port number as the third argument to
225
- Net::HTTP.get_response.
226
- * The PingHTTP.new method now has a default port of 80.
227
- * Minor doc update for PingHTTP.new.
228
-
229
- == 1.0.1 - 22-Jun-2005
230
- * Bug fix for the install.rb file. The gem is unaffected.
231
-
232
- == 1.0.0 - 14-Jun-2005
233
- * Renamed project from net-pingsimple to just net-ping.
234
- * Added a PingHTTP subclass.
235
- * Moved project to RubyForge.
236
- * Added a gemspec.
237
-
238
- == 0.3.1 - 9-Apr-2005
239
- * Updated PingExternal to use win32/open3 on Win32 platforms.
240
- * Minor error handling change for the PingSimple.econnrefused= method. It now
241
- raises an ArgumentError if any values other than true or false are passed.
242
- * PingSimple#warning and PingSimple#exception are now read-only methods.
243
- * The warning and exception attributes are now reset to nil between each call
244
- to ping.
245
- * The data and data= methods are now unique to the PingUDP class.
246
- * The time and time= methods have been changed to timeout and timeout=,
247
- respectively.
248
- * Removed the pingsimple.rd and pingsimple.html files. The pingsimple.txt file
249
- has been reorganized and is now rdoc friendly.
250
- * Added a few sample programs under the 'examples' directory.
251
- * Some minor test updates and changes.
252
- * Removed the INSTALL file. That information is now in the README file.
253
- * Now requires Ruby 1.8.0 or later.
254
-
255
- == 0.3.0 - 12-Feb-2004
256
- * Fixed ping string for PingExternal class based on platform. The old
257
- string was really only good for Linux and *BSD.
258
- * Added Win32 support (requires win32_popen package).
259
- * Added warranty info.
260
-
261
- == 0.2.3 - 12-Aug-2003
262
- * Fixed a bug in PingExternal that could consume file descriptors if used in a loop
263
- * Added some initialization to avoid -w warnings
264
- * Removed VERSION() class method. Use the constant instead
265
- * Modified test suite slightly
266
- * Moved rd2 docs to doc directory
267
-
268
- == 0.2.2 - 3-Apr-2003
269
- * Fixed handling of stdout in PingExternal
270
-
271
- == 0.2.1 - 27-Mar-2003
272
- * Fixed major bug with PingExternal class with regards to down hosts
273
- * Exceptions and warnings from PingExternal are now chomp'd
274
- * Modified test suite
275
- * Doc updates
276
-
277
- == 0.2.0 - 14-Feb-2003
278
- * The default behavior of PingTCP with regards to ECONNREFUSED is now
279
- configurable
280
- * Added a VERSION constant and method (to the base class)
281
- * Added a test suite (for those with testunit installed)
282
- * Doc changes, rearrangement and general cleanup
283
- * Manifest is now MANIFEST
284
- * Added an INSTALL file
285
-
286
- == 0.1.0 - 9-Dec-2002
287
- * Added ping? alias for ping method
288
- * Warnings now handled separately
289
- * Corrected a mis-named variable in Ping::External
290
- * Fixed the install.rb file
291
- * Updated and added docs
292
- * Renamed tarball to net-pingsimple to reflect RAA naming convention
293
-
294
- == 0.0.1a
295
- * Did this release ever happen?
296
-
297
- == 0.0.1
298
- * Initial release.
1
+ == 1.7.2 - 21-Jan-2014
2
+ * Fixed a bug in the Ping::HTTP constructor where it was not honoring the
3
+ port if provided as the second argument. Thanks go to Florian Anderiasch
4
+ for the spot.
5
+ * Removed win32-open3 require in the Ping::External class since it isn't
6
+ needed in Ruby 1.9.x or later.
7
+ * Refactored the Ping::External class so that it checks the exit status rather
8
+ than try to parse output. Thanks go to Miguel Tubia for the suggestion.
9
+ * Dropped explicit support for Windows XP.
10
+ * Removed reference to win32-open3 in README.
11
+
12
+ == 1.7.1 - 26-Sep-2013
13
+ * Fixed a bug in the Ping::TCP class where it could return nil instead
14
+ of false. Thanks go to Grandy Nguyen for the patch.
15
+
16
+ == 1.7.0 - 25-Aug-2013
17
+ * Now requires Ruby 1.9.x or later.
18
+ * Replaced the main ping code for the Ping::TCP class. The timeout module
19
+ really doesn't work very well with sockets, and so a raw socket approach
20
+ combined with IO.select is now used instead.
21
+ * Updates to the doc/ping.txt file.
22
+
23
+ == 1.6.2 - 8-Aug-2013
24
+ * Fixed a bug in the ICMP ping helper module. Thanks go to Yuichi
25
+ Tsunematsu for the spot.
26
+ * The win32-security library is not just a development dependency. Thanks
27
+ again go to Yuichi Tsunematsu for the spot.
28
+ * Updated the icmp ping tests.
29
+ * Updated the gemspec for MS Windows.
30
+
31
+ == 1.6.1 - 17-Jul-2013
32
+ * Automatically set the scheme to "http" if not present when performing
33
+ HTTP pings. See https://bugs.ruby-lang.org/issues/8645 for an issue
34
+ with the uri library that led to this change. Thanks go to Preston Lee
35
+ for the spot.
36
+ * Removed the windows/system_info dependency, since it added other
37
+ dependencies just to check the Windows version. Instead, I added a
38
+ helper file that adds some needed Windows functions using FFI.
39
+ * Added Rake as a development dependency and updated the Gemfile
40
+ source because Bundler. Thanks to Jean-Philippe Doyle for the patches.
41
+ * Added some warning text to the Net::Ping::External tests for users
42
+ who are using OpenDNS. In short, you will probably get test failures
43
+ and surprising true results for bad hosts.
44
+
45
+ == 1.6.0 - 19-Mar-2013
46
+ * Split out the ldap portion of the code into its own branch.
47
+ * Don't require resolv-replace on Ruby 1.9.3 or later.
48
+ * Now gets proxy information from the http_proxy, https_proxy, and
49
+ no_proxy environment variables and uses that when making requests.
50
+ Thanks go to Kevin Olbrich for the patch.
51
+
52
+ == 1.5.3 - 29-Feb-2012
53
+ * Removed the Windows::Console dependency and replaced it with FFI since there
54
+ were only two functions needed. This had the nice side effect of making it
55
+ work with JRuby, too.
56
+ * Minor cleanup on some multi-variable assignment.
57
+ * Fixed require statements and one test for 1.9.
58
+
59
+ == 1.5.2 - 4-Nov-2011
60
+ * The Net::Ping::HTTP class now defaults to using HEAD instead of GET
61
+ for its ping test. You can alter this via the get_request accessor.
62
+ Thanks got to Balazs Kutil for the patch.
63
+ * Added the ssl_verify_mode accessor to the Net::Ping::HTTP class, which
64
+ defaults to VERIFY_NONE. This fixes possible warnings resulting from
65
+ missing SSL certificates when using https. Thanks go to Balazs Kutil
66
+ for the patch.
67
+
68
+ == 1.5.1 - 15-Sep-2011
69
+ * Use RbConfig on Ruby 1.9 and later. Thanks go to Torsten Schönebaum
70
+ for the patch.
71
+
72
+ == 1.5.0 - 3-May-2011
73
+ * Added the Net::Ping::LDAP class which allows you to perform LDAP pings.
74
+ Thanks go to Paul Gallagher for adding this.
75
+ * The duration instance variable is now reset to nil on a failed ping. Again,
76
+ thanks go to Paul Gallagher.
77
+
78
+ == 1.4.1 - 17-Mar-2011
79
+ * Incorporated changes from Lukas Zapletal that alters the icmp tests to use
80
+ your localhost instead of going outside the network.
81
+ * The http tests were similarly modified courtesy of fakeweb, which is now a
82
+ development dependency. Again, change from Lukas Zapletal.
83
+ * The icmp tests were reworked for Windows Vista and later. This required the
84
+ addition of the win32-security library as a development dependency.
85
+ * The Net::Ping::WMI class is no longer skipped on require or in tests since
86
+ JRuby now supports win32ole.
87
+
88
+ == 1.4.0 - 14-Feb-2011
89
+ * Added the redirect_limit accessor for the Net::Ping::HTTP class. This caps
90
+ the number of redirects that are allowed before a ping is considered a
91
+ failure. The default is 5.
92
+ * Changed the way in which redirects are detected. Previously I was checking
93
+ against the response class, but decided this was unreliable. I now check the
94
+ response code itself. Any code in the 300 range is considered a redirect.
95
+ * The default port for the Net::Ping::HTTP class is no longer explicitly set
96
+ to 80, but instead uses the result of the URI.parse(uri).port method by
97
+ default. Note that you can still override the port if you explicitly provide
98
+ one in the constructor.
99
+ * The Net::Ping::HTTP class now handles https URI's properly. Note that you may
100
+ get a warning about peer certificates.
101
+
102
+ == 1.3.7 - 14-Oct-2010
103
+ * Wrapped the ICMP ping in a while loop that breaks on success to prevent
104
+ the ping from failing too early. Thanks go to Benny Holmgren for the
105
+ spot and the patch.
106
+
107
+ == 1.3.6 - 4-Sep-2010
108
+ * Fixed variable naming issue in Net::Ping::External. Thanks go to taw
109
+ for the spot.
110
+ * Added a default Rake task.
111
+ * Refactored the tests for Net::Ping::External to take advantage of the
112
+ features of test-unit 2.x.
113
+
114
+ == 1.3.5 - 3-Sep-2010
115
+ * Allow for custom user agent in Net::Ping::HTTP. Thanks go to Michael
116
+ Reinsch for the patch.
117
+
118
+ == 1.3.4 - 25-Jun-2010
119
+ * Fixed a dumb platform bug. Thanks go to Jason Frey for the spot.
120
+
121
+ == 1.3.3 - 21-Jun-2010
122
+ * Bug fixes for JRuby on MS Windows. The code now explicitly checks for JRuby
123
+ in a few places to ensure it doesn't try to load unsupported libraries
124
+ on MS Windows. Thanks go to Rob Schultz for the spot and some patches.
125
+ * The Net::Ping::HTTP class will no longer fail because a root URI
126
+ is missing a trailing slash. If the URI#path is empty, it now defaults
127
+ to the root path.
128
+ * The Rakefile tasks and naming were refactored.
129
+ * Some tests were refactored to take advantage of test-unit 2.x features,
130
+ as well as make them better and more descriptive in general.
131
+
132
+ == 1.3.2 - 21-Sep-2009
133
+ * Doing a 'require "net/ping"' was not automatically loading the
134
+ Net::Ping::WMI class on MS Windows. This has been fixed. Thanks go to
135
+ Joseph M. for the spot.
136
+ * Removed all $LOAD_PATH mangling for both the library and tests.
137
+ * Fixed a bug in the Net::Ping::HTTP class where a failed redirect did
138
+ not set the @exception and @warning instance variables properly.
139
+ * The PingStatus struct returned by Net::Ping::WMI is now frozen.
140
+ * The test-unit library was switched from a runtime dependency to a
141
+ development dependency.
142
+ * Added the :gem Rake task that builds a gem.
143
+ * Updated the :gem_install task to use the :gem task as a prerequisite.
144
+ * Updated the dependencies for MS Windows.
145
+ * The Rake test tasks are now more Rakish, e.g. test:tcp instead of test_tcp.
146
+ * Renamed example file names to avoid any potential confusion with actual
147
+ test files.
148
+
149
+ == 1.3.1 - 22-Jul-2009
150
+ * Removed class aliases, e.g. use Ping::External, not PingExternal.
151
+ * Minor code change to eliminate a warning that popped up in 1.9.x.
152
+ * The win32-open3 library is removed as a dependency for Ruby 1.9.x.
153
+ * Changed license to Artistic 2.0.
154
+ * Some gemspec and README updates.
155
+
156
+ == 1.3.0 - 19-May-2009
157
+ * Added the Ping::WMI class for MS Windows. This class encapsulates the
158
+ Win32_PingStatus WMI class. Unlike other ping methods, this one returns
159
+ a struct that contains various bits of information.
160
+ * The Net::Ping::External class now ensures that handles opened by the open3
161
+ call are closed. Thanks go to Nick S. Kanakakorn for the spot and a
162
+ preliminary patch.
163
+ * The Net::Ping::ICMP class now explicitly closes the socket if the call to
164
+ the Socket.pack_sockaddr_in method fails.
165
+ * Some documentation updates.
166
+
167
+ == 1.2.3 - 13-Jan-2008
168
+ * Fixed a bug in the checksum private method where it would die on odd data
169
+ sizes. Thanks go to Jake Douglas for the spot.
170
+ * A Socket.get_sockaddr_in call in the Ping::ICMP class is no longer included
171
+ as part of the overall ping time. Thanks go again to Jake Douglas for
172
+ the spot.
173
+ * Added data_size tests to the Ping::ICMP test suite.
174
+ * Renamed and updated the test files. The test-unit 2.x gem is now a
175
+ prerequisite as a result.
176
+
177
+ == 1.2.2 - 22-Jan-2008
178
+ * Bug fix for Ping::External where it was not honoring the timeout value.
179
+ Thanks go to Chris Morris for the spot and the patch.
180
+ * Bug fix for Ping::External where non-English output could cause false
181
+ positives on MS Windows Vista or later. This library now requires the
182
+ windows-pr library on MS Windows systems as a result.
183
+ * Added the Ping::UDP.service_check and Ping::UDP.service_check= class
184
+ methods. This method controls whether or not Errno::ECONNREFUSED or
185
+ Errno::ECONNRESET are considered successful pings or not.
186
+ * The Ping::HTTP class no longer uses the resolv-replace library on MS Windows
187
+ because it was (ironically) causing timeouts.
188
+ * Changed the Ping::TCP.econnrefused method to Ping::TCP.service_check. I
189
+ changed it because I now use a similar method in Ping::UDP, but that handles
190
+ more than Errno::ECONNREFUSED. An alias is provided to provide backwards
191
+ compatibility, but it is considered deprecated and will be removed in the
192
+ 1.3.0 release.
193
+ * Removed the install.rb file. The Rakefile now handles installation.
194
+
195
+ == 1.2.1 - 6-Apr-2007
196
+ * For the Ping::External class, if a ping attempt results in 100% packet loss
197
+ it is now considered a failed ping, regardless of whether or not an error
198
+ was sent to stdout.
199
+ * Fixed the Ping::External class for OS X.
200
+ * Added a Rakefile. Installation and testing should now be run via Rake tasks.
201
+ * Minor fix for the Ping::ICMP class where I had accidentally dup'd some
202
+ aliases. This was harmless, but did cause warnings with -w.
203
+
204
+ == 1.2.0 - 5-Dec-2006
205
+ * Internal reorganization - each class now lives in its own file.
206
+ * Added the Ping::ICMP class. Thanks go to Jos Backus for contributing a
207
+ large part of the code.
208
+ * The host argument is now optional in the constructor. You can now specify
209
+ it in the ping method instead. Note that it must be specified in one place
210
+ or the other.
211
+ * Each PingXXX class is now Ping::XXX instead. However, class name aliases
212
+ have been setup for backwards compatibility for now.
213
+ * The constructor for each Ping types now yields self.
214
+ * Added the pingecho alias for the ping method for each Ping type.
215
+ * Added the Ping::HTTP#follow_redirect accessor.
216
+ * The Ping::HTTP#ping method now honors the timeout value.
217
+ * The Ping::HTTP class now follows redirects automatically, though this is
218
+ configurable with the follow_redirect accessor.
219
+ * The Ping::TCP.ecr and Ping::TCP.ecr= methods are now true class method
220
+ aliases (they were just wrappers previously).
221
+ * The Ping::UDP class now enforces a 64 character limit on data that can be
222
+ sent on a udp ping.
223
+ * Updated the gemspec. Specifically, MS Windows now has a dependency on
224
+ the win32-open3 package.
225
+ * Added inline rdoc.
226
+
227
+ == 1.1.1 - 15-Jun-2006
228
+ * Fixed a bug in PingTCP (bad variable name). Thanks go to Anoop Chandran
229
+ for the spot.
230
+ * Minor variable name refactoring.
231
+ * Minor test updates.
232
+
233
+ == 1.1.0 - 17-Jul-2005
234
+ * Fixed a bug in the PingHTTP#ping method where I was accidentally passing
235
+ the timeout value instead of the port number as the third argument to
236
+ Net::HTTP.get_response.
237
+ * The PingHTTP.new method now has a default port of 80.
238
+ * Minor doc update for PingHTTP.new.
239
+
240
+ == 1.0.1 - 22-Jun-2005
241
+ * Bug fix for the install.rb file. The gem is unaffected.
242
+
243
+ == 1.0.0 - 14-Jun-2005
244
+ * Renamed project from net-pingsimple to just net-ping.
245
+ * Added a PingHTTP subclass.
246
+ * Moved project to RubyForge.
247
+ * Added a gemspec.
248
+
249
+ == 0.3.1 - 9-Apr-2005
250
+ * Updated PingExternal to use win32/open3 on Win32 platforms.
251
+ * Minor error handling change for the PingSimple.econnrefused= method. It now
252
+ raises an ArgumentError if any values other than true or false are passed.
253
+ * PingSimple#warning and PingSimple#exception are now read-only methods.
254
+ * The warning and exception attributes are now reset to nil between each call
255
+ to ping.
256
+ * The data and data= methods are now unique to the PingUDP class.
257
+ * The time and time= methods have been changed to timeout and timeout=,
258
+ respectively.
259
+ * Removed the pingsimple.rd and pingsimple.html files. The pingsimple.txt file
260
+ has been reorganized and is now rdoc friendly.
261
+ * Added a few sample programs under the 'examples' directory.
262
+ * Some minor test updates and changes.
263
+ * Removed the INSTALL file. That information is now in the README file.
264
+ * Now requires Ruby 1.8.0 or later.
265
+
266
+ == 0.3.0 - 12-Feb-2004
267
+ * Fixed ping string for PingExternal class based on platform. The old
268
+ string was really only good for Linux and *BSD.
269
+ * Added Win32 support (requires win32_popen package).
270
+ * Added warranty info.
271
+
272
+ == 0.2.3 - 12-Aug-2003
273
+ * Fixed a bug in PingExternal that could consume file descriptors if used in a loop
274
+ * Added some initialization to avoid -w warnings
275
+ * Removed VERSION() class method. Use the constant instead
276
+ * Modified test suite slightly
277
+ * Moved rd2 docs to doc directory
278
+
279
+ == 0.2.2 - 3-Apr-2003
280
+ * Fixed handling of stdout in PingExternal
281
+
282
+ == 0.2.1 - 27-Mar-2003
283
+ * Fixed major bug with PingExternal class with regards to down hosts
284
+ * Exceptions and warnings from PingExternal are now chomp'd
285
+ * Modified test suite
286
+ * Doc updates
287
+
288
+ == 0.2.0 - 14-Feb-2003
289
+ * The default behavior of PingTCP with regards to ECONNREFUSED is now
290
+ configurable
291
+ * Added a VERSION constant and method (to the base class)
292
+ * Added a test suite (for those with testunit installed)
293
+ * Doc changes, rearrangement and general cleanup
294
+ * Manifest is now MANIFEST
295
+ * Added an INSTALL file
296
+
297
+ == 0.1.0 - 9-Dec-2002
298
+ * Added ping? alias for ping method
299
+ * Warnings now handled separately
300
+ * Corrected a mis-named variable in Ping::External
301
+ * Fixed the install.rb file
302
+ * Updated and added docs
303
+ * Renamed tarball to net-pingsimple to reflect RAA naming convention
304
+
305
+ == 0.0.1a
306
+ * Did this release ever happen?
307
+
308
+ == 0.0.1
309
+ * Initial release.