sys-proctable 0.8.0-x86-freebsd-7 → 0.8.1-x86-freebsd-7

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,13 @@
1
+ == 0.8.1 - 6-Apr-2009
2
+ * The Linux and Solaris libraries now handle the possibility of a process
3
+ terminating in the middle of a read more gracefully. If that happens, they
4
+ merely skip to the next record, i.e. it's all or nothing. Thanks go to
5
+ Heejong Lee for the spot and patch.
6
+ * Fixed a bug in the Linux version where embedded nulls were not being
7
+ stripped out of the cmdline data.
8
+ * Added the comm alias back to the Solaris version. Thanks go to Jun Young Kim
9
+ for the spot.
10
+
1
11
  == 0.8.0 - 26-Jan-2009
2
12
  * The Linux and Solaris versions of this library are now pure Ruby. Be warned,
3
13
  however, that only Solaris 8 and later are now supported. This may change
data/ext/bsd/bsd.c CHANGED
@@ -286,7 +286,7 @@ void Init_proctable(){
286
286
 
287
287
  /* Constants */
288
288
 
289
- /* 0.8.0: The version of the sys-proctable library */
289
+ /* 0.8.1: The version of the sys-proctable library */
290
290
  rb_define_const(cProcTable, "VERSION", rb_str_new2(SYS_PROCTABLE_VERSION));
291
291
 
292
292
  /* Structures */
data/ext/version.h CHANGED
@@ -1,2 +1,2 @@
1
1
  /* version.h - stores the version number for all platforms (that use C) */
2
- #define SYS_PROCTABLE_VERSION "0.8.0"
2
+ #define SYS_PROCTABLE_VERSION "0.8.1"
@@ -23,7 +23,7 @@ class TC_ProcTable_All < Test::Unit::TestCase
23
23
  end
24
24
 
25
25
  def test_version
26
- assert_equal('0.8.0', ProcTable::VERSION)
26
+ assert_equal('0.8.1', ProcTable::VERSION)
27
27
  end
28
28
 
29
29
  def test_fields
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sys-proctable
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.0
4
+ version: 0.8.1
5
5
  platform: x86-freebsd-7
6
6
  authors:
7
7
  - Daniel J. Berger
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-01-26 00:00:00 -07:00
12
+ date: 2009-04-08 00:00:00 -06:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency