sys-proctable 0.9.9-universal-mingw32 → 1.0.0-universal-mingw32

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 083529b4b2f58af811cc782b87fde9911333aa5f
4
- data.tar.gz: 5e2e9330cf51384ca8737d1dbfd041f9990bdced
3
+ metadata.gz: 53b046ad17159124a2345bb007c4f3f4129c73f9
4
+ data.tar.gz: 104116a3797ecf13a8d65d629a94137cba221108
5
5
  SHA512:
6
- metadata.gz: 0d6d4aa8ea8d5c46f2c9ddd6dc83f4996d601ec4f938c22d27efdafc3556089b4e2b12dcc683efdf5cfe734125e50f9b2367c4e3e83cc86f6ce1a3347505a73c
7
- data.tar.gz: 35800832e6ae137b0ce207099526d22165aa76736c8a368d0597c784f50dfb7b0babd4e630e615a6dbf265bf57b0524cff7744f3877a50d65e68c6eb50998868
6
+ metadata.gz: 1b22d2f2d5b7817bd0595e0e7e4f93ff9ecfcaf99225b7be620cee7f88f3cac8e980381c889b647472c85505b62ff7d70f9f1e2db2dd3ee723897cadcce26ca6
7
+ data.tar.gz: 6c8468a7bc0370f6e9c9a3de48481dbce034e563688894f79dc85893fed06f84127b771fc4d5aaad025ec8366c8313dd7d43600b804642d0f1c96eb9e886dc45
Binary file
data.tar.gz.sig CHANGED
Binary file
data/CHANGES CHANGED
@@ -1,3 +1,7 @@
1
+ == 1.0.0 - 11-Jan-2016
2
+ * Added smaps information for Linux. Thanks go to Joe Rafaniello for the patch.
3
+ * This is not really a major release. I just ran out of version numbers.
4
+
1
5
  == 0.9.9 - 8-Nov-2015
2
6
  * Added support for cgroups on Linux. Thanks go to Dennis Günnewig for the patch.
3
7
  * Added a sys-proctable.rb file for convenience.
data/README CHANGED
@@ -105,7 +105,7 @@
105
105
  Artistic 2.0
106
106
 
107
107
  == Copyright
108
- (C) 2003-2015 Daniel J. Berger
108
+ (C) 2003-2016 Daniel J. Berger
109
109
  All Rights Reserved.
110
110
 
111
111
  == Contributions
data/Rakefile CHANGED
@@ -166,7 +166,7 @@ namespace :gem do
166
166
  when /linux/i
167
167
  spec.platform = Gem::Platform.new(['universal', 'linux'])
168
168
  spec.require_paths = ['lib', 'lib/linux']
169
- spec.files += ['lib/linux/sys/proctable.rb', 'lib/linux/sys/proctable/cgroup_entry.rb']
169
+ spec.files += ['lib/linux/sys/proctable.rb', 'lib/linux/sys/proctable/cgroup_entry.rb', 'lib/linux/sys/proctable/smaps.rb']
170
170
  spec.test_files << 'test/test_sys_proctable_linux.rb'
171
171
  when /sunos|solaris/i
172
172
  spec.platform = Gem::Platform.new(['universal', 'solaris'])
@@ -1,6 +1,6 @@
1
1
  module Sys
2
2
  class ProcTable
3
3
  # The version of the sys-proctable library
4
- VERSION = '0.9.9'
4
+ VERSION = '1.0.0'
5
5
  end
6
6
  end
@@ -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.9'
5
+ spec.version = '1.0.0'
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.9', ProcTable::VERSION)
22
+ assert_equal('1.0.0', ProcTable::VERSION)
23
23
  end
24
24
 
25
25
  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.9.9
4
+ version: 1.0.0
5
5
  platform: universal-mingw32
6
6
  authors:
7
7
  - Daniel J. Berger
@@ -30,7 +30,7 @@ cert_chain:
30
30
  EJYzxdPOrx2n6NYR3Hk+vHP0U7UBSveI6+qx+ndQYaeyCn+GRX2PKS9h66YF/Q1V
31
31
  tGSHgAmcLlkdGgan182qsE/4kKM=
32
32
  -----END CERTIFICATE-----
33
- date: 2015-11-08 00:00:00.000000000 Z
33
+ date: 2016-01-11 00:00:00.000000000 Z
34
34
  dependencies:
35
35
  - !ruby/object:Gem::Dependency
36
36
  name: test-unit
@@ -109,7 +109,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
109
109
  version: '0'
110
110
  requirements: []
111
111
  rubyforge_project:
112
- rubygems_version: 2.5.0
112
+ rubygems_version: 2.5.1
113
113
  signing_key:
114
114
  specification_version: 4
115
115
  summary: An interface for providing process table information
metadata.gz.sig CHANGED
Binary file