net-ping 1.4.1-x86-mingw32 → 1.5.3-x86-mingw32

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