sys-proctable 0.9.5-universal-darwin → 0.9.6-universal-darwin

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3b1cdd14b7384e61fcbaebc7cb065b44a9e93c45
4
- data.tar.gz: 42ba4f461988cb3cddb6509e5e650e7acbf6cd02
3
+ metadata.gz: f940ae8b3bc7264a8c92d5363b9a4956b94143fa
4
+ data.tar.gz: 7baaa9ab3d5dbbbc7f887beeba7d9f15fa4287b5
5
5
  SHA512:
6
- metadata.gz: b94812963041c9a7870fcd5ad145f0b1d0d7e4374fd7e37b7ce13ac19aa5246a19bf8870c09523ec71a4ff9e4ab9aecaba5a263eb79b3708b3b12a5f79830e4d
7
- data.tar.gz: 90a56eff492e110906c5d14b199dabc6964919e933405f39ebe97079867d5a9d9f36970f7df7d1ad78ab48efec7470c4cd3f73958a7ca800e52bfa2aed2226d6
6
+ metadata.gz: fccda023f19c3f97026ec37388b8980178d268659477bb8c86079eb8953c02400ee98037f63cab72396b75abcba9a9cb2bf2d4fe3c8007881c5b9b998020479e
7
+ data.tar.gz: 19dcdfb85e4529b1a324224fb25a4036cf68dead3ee8126ba25fcb9a548c43756b753da17c9c69c5bb58e81dc4fed478b71368aa7b79d28b0dc22f1000892bee
data/CHANGES CHANGED
@@ -1,3 +1,6 @@
1
+ == 0.9.6 - 24-Feb-2015
2
+ * Added NLWP field on Linux. Thanks go to Rich Chatterton for the patch.
3
+
1
4
  == 0.9.5 - 10-Feb-2015
2
5
  * Significant cleanup and memory reduction of the OSX code. Thanks go
3
6
  to Ivan (toy) for the patches.
data/README CHANGED
@@ -11,6 +11,7 @@
11
11
  * Solaris 8+
12
12
  * HP-UX 10+
13
13
  * OS X 10.4+
14
+ * AIX 5.3+
14
15
 
15
16
  == Installation
16
17
  gem install sys-proctable
@@ -104,8 +105,14 @@
104
105
  Artistic 2.0
105
106
 
106
107
  == Copyright
107
- (C) 2003-2014 Daniel J. Berger
108
+ (C) 2003-2015 Daniel J. Berger
108
109
  All Rights Reserved.
109
110
 
111
+ == Contributions
112
+ Although this library is free, please consider having your company
113
+ setup a gittip if used by your company professionally.
114
+
115
+ http://www.gittip.com/djberg96/
116
+
110
117
  == Author
111
118
  Daniel J. Berger
@@ -20,7 +20,7 @@
20
20
 
21
21
  #define pid_of(pproc) pproc->kp_proc.p_pid
22
22
 
23
- #define SYS_PROCTABLE_VERSION "0.9.5"
23
+ #define SYS_PROCTABLE_VERSION "0.9.6"
24
24
 
25
25
  #define PROC_MIB_LEN 4
26
26
  #define ARGS_MIB_LEN 3
@@ -417,7 +417,7 @@ void Init_proctable(){
417
417
 
418
418
  /* Constants */
419
419
 
420
- /* 0.9.5: The version of the sys-proctable library */
420
+ /* 0.9.6: The version of the sys-proctable library */
421
421
  rb_define_const(cProcTable, "VERSION", rb_str_new2(SYS_PROCTABLE_VERSION));
422
422
 
423
423
  /* Structs */
@@ -2,7 +2,7 @@ require 'rubygems'
2
2
 
3
3
  Gem::Specification.new do |spec|
4
4
  spec.name = 'sys-proctable'
5
- spec.version = '0.9.5'
5
+ spec.version = '0.9.6'
6
6
  spec.author = 'Daniel J. Berger'
7
7
  spec.license = 'Artistic 2.0'
8
8
  spec.email = 'djberg96@gmail.com'
@@ -19,7 +19,7 @@ class TC_ProcTable_All < Test::Unit::TestCase
19
19
  end
20
20
 
21
21
  def test_version
22
- assert_equal('0.9.5', ProcTable::VERSION)
22
+ assert_equal('0.9.6', ProcTable::VERSION)
23
23
  end
24
24
 
25
25
  def test_fields
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sys-proctable
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.5
4
+ version: 0.9.6
5
5
  platform: universal-darwin
6
6
  authors:
7
7
  - Daniel J. Berger
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-02-10 00:00:00.000000000 Z
11
+ date: 2015-02-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: test-unit