sys-proctable 0.9.8-universal-solaris → 0.9.9-universal-solaris

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: f5aa751b17404444244ce20ceb6f8de4f470bba0
4
- data.tar.gz: 89b19da64b6263de4443be773164b196fc02f2f2
3
+ metadata.gz: 4ae27863b426b8e249d8e1915f1f0a8f2eb38165
4
+ data.tar.gz: 7b456106da7eefe4eb98427a521e445c4fdc0782
5
5
  SHA512:
6
- metadata.gz: 9899154d8a7cb8aebb1a4ddc07ac199f02d0cc99963c43fb2558f52de7c5742079e5de7242fd9decc6b7cdfbffc16658dcacaca09be86b7bda27cbe5443f8691
7
- data.tar.gz: f5abdb495cd309a3c81aba0c99e7f46dd8da4db71e01b3514fd72e92df56196566a36a92b5e92cad469b2229e2a1df29b7a6104218dd94f5c97aa9a163c586d0
6
+ metadata.gz: 2471d740207b254439d187545e5c36c6a2f36038e86c877968874742c517eb95773c4041a3c45d913e30e0dfcb7f62797af61f02b74c36408a800a26b3ed60a1
7
+ data.tar.gz: 93e5df54aa02bc30315030322ce970f061e4ef1b3b6f6cb6f2544f37c520d7aa04a1b58e4beb4d24bdb2bd48d380bb9c7fe2edc7dcac02195f232d2254d38b21
checksums.yaml.gz.sig ADDED
Binary file
data/CHANGES CHANGED
@@ -1,3 +1,9 @@
1
+ == 0.9.9 - 8-Nov-2015
2
+ * Added support for cgroups on Linux. Thanks go to Dennis Günnewig for the patch.
3
+ * Added a sys-proctable.rb file for convenience.
4
+ * This gem is now signed.
5
+ * Gem related tasks in the Rakefile now assume Rubygems 2.x.
6
+
1
7
  == 0.9.8 - 18-Apr-2015
2
8
  * Fixed a bug in the gemspec. Last version got yanked.
3
9
 
data/MANIFEST CHANGED
@@ -15,6 +15,7 @@
15
15
  * ext/darwin/sys/proctable.c
16
16
  * ext/hpux/extconf.rb
17
17
  * ext/hpux/sys/proctable.c
18
+ * lib/sys-proctable.rb
18
19
  * lib/sys/top.rb
19
20
  * lib/sys/proctable/version.rb
20
21
  * lib/aix/sys/proctable.rb
data/Rakefile CHANGED
@@ -126,15 +126,25 @@ Rake::TestTask.new do |t|
126
126
  end
127
127
 
128
128
  namespace :gem do
129
- desc 'Create a gem'
130
- task :create => [:clean] do
129
+ desc 'Create a gem for the specified OS, or your current OS by default'
130
+ task :create, [:os] => [:clean] do |_task, args|
131
+ require 'rubygems/package'
132
+
133
+ if args.is_a?(String)
134
+ os = args
135
+ else
136
+ args.with_defaults(:os => CONFIG['host_os'])
137
+ os = args[:os]
138
+ end
139
+
131
140
  spec = eval(IO.read('sys-proctable.gemspec'))
141
+ spec.files += ['lib/sys-proctable.rb']
132
142
 
133
143
  # I've had to manually futz with the spec here in some cases
134
144
  # in order to get the universal platform settings I want because
135
145
  # of some bugginess in Rubygems' platform.rb.
136
146
  #
137
- case CONFIG['host_os']
147
+ case os
138
148
  when /freebsd/i
139
149
  spec.platform = Gem::Platform.new(['universal', 'freebsd'])
140
150
  spec.require_paths = ['lib', 'lib/freebsd']
@@ -156,7 +166,7 @@ namespace :gem do
156
166
  when /linux/i
157
167
  spec.platform = Gem::Platform.new(['universal', 'linux'])
158
168
  spec.require_paths = ['lib', 'lib/linux']
159
- spec.files += ['lib/linux/sys/proctable.rb']
169
+ spec.files += ['lib/linux/sys/proctable.rb', 'lib/linux/sys/proctable/cgroup_entry.rb']
160
170
  spec.test_files << 'test/test_sys_proctable_linux.rb'
161
171
  when /sunos|solaris/i
162
172
  spec.platform = Gem::Platform.new(['universal', 'solaris'])
@@ -173,6 +183,8 @@ namespace :gem do
173
183
  spec.require_paths = ['lib', 'lib/windows']
174
184
  spec.files += ['lib/windows/sys/proctable.rb']
175
185
  spec.test_files << 'test/test_sys_proctable_windows.rb'
186
+ else
187
+ raise "Unsupported platform: #{os}"
176
188
  end
177
189
 
178
190
  spec.test_files << 'test/test_sys_top.rb'
@@ -180,12 +192,20 @@ namespace :gem do
180
192
  # https://github.com/rubygems/rubygems/issues/147
181
193
  spec.original_platform = spec.platform
182
194
 
183
- if Gem::VERSION < "2.0"
184
- Gem::Builder.new(spec).build
185
- else
186
- require 'rubygems/package'
187
- Gem::Package.build(spec)
188
- end
195
+ spec.signing_key = File.join(Dir.home, '.ssh', 'gem-private_key.pem')
196
+
197
+ Gem::Package.build(spec, true)
198
+ end
199
+
200
+ desc 'Create a gem for each supported OS'
201
+ task :create_all => [:clean] do
202
+ platforms = %w[aix darwin freebsd hpux linux solaris windows]
203
+ Rake::Task["clean"].execute
204
+ platforms.each{ |os|
205
+ FileUtils.mkdir_p("pkg/#{os}")
206
+ Rake::Task["gem:create"].execute(os)
207
+ Dir.glob("*.gem").each{ |gem| FileUtils.mv(gem, "pkg/#{os}") }
208
+ }
189
209
  end
190
210
 
191
211
  desc 'Install the sys-proctable library as a gem'
@@ -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.8'
4
+ VERSION = '0.9.9'
5
5
  end
6
6
  end
@@ -0,0 +1 @@
1
+ require 'sys/proctable'
@@ -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.8'
5
+ spec.version = '0.9.9'
6
6
  spec.author = 'Daniel J. Berger'
7
7
  spec.license = 'Artistic 2.0'
8
8
  spec.email = 'djberg96@gmail.com'
@@ -10,6 +10,7 @@ Gem::Specification.new do |spec|
10
10
  spec.platform = Gem::Platform::CURRENT # Probably altered by Rake task
11
11
  spec.summary = 'An interface for providing process table information'
12
12
  spec.test_files = ['test/test_sys_proctable_all.rb']
13
+ spec.cert_chain = ['certs/djberg96_pub.pem']
13
14
 
14
15
  # Additional files for your platform are added by the 'rake gem' task.
15
16
  spec.files = [
@@ -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.8', ProcTable::VERSION)
22
+ assert_equal('0.9.9', ProcTable::VERSION)
23
23
  end
24
24
 
25
25
  def test_fields
data.tar.gz.sig ADDED
Binary file
metadata CHANGED
@@ -1,14 +1,36 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sys-proctable
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.8
4
+ version: 0.9.9
5
5
  platform: universal-solaris
6
6
  authors:
7
7
  - Daniel J. Berger
8
8
  autorequire:
9
9
  bindir: bin
10
- cert_chain: []
11
- date: 2015-04-19 00:00:00.000000000 Z
10
+ cert_chain:
11
+ - |
12
+ -----BEGIN CERTIFICATE-----
13
+ MIIDcDCCAligAwIBAgIBATANBgkqhkiG9w0BAQUFADA/MREwDwYDVQQDDAhkamJl
14
+ cmc5NjEVMBMGCgmSJomT8ixkARkWBWdtYWlsMRMwEQYKCZImiZPyLGQBGRYDY29t
15
+ MB4XDTE1MDkwMjIwNDkxOFoXDTE2MDkwMTIwNDkxOFowPzERMA8GA1UEAwwIZGpi
16
+ ZXJnOTYxFTATBgoJkiaJk/IsZAEZFgVnbWFpbDETMBEGCgmSJomT8ixkARkWA2Nv
17
+ bTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMyTkvXqRp6hLs9eoJOS
18
+ Hmi8kRYbq9Vkf15/hMxJpotYMgJVHHWrmDcC5Dye2PbnXjTkKf266Zw0PtT9h+lI
19
+ S3ts9HO+vaCFSMwFFZmnWJSpQ3CNw2RcHxjWkk9yF7imEM8Kz9ojhiDXzBetdV6M
20
+ gr0lV/alUr7TNVBDngbXEfTWscyXh1qd7xZ4EcOdsDktCe5G45N/o3662tPQvJsi
21
+ FOF0CM/KuBsa/HL1/eoEmF4B3EKIRfTHrQ3hu20Kv3RJ88QM4ec2+0dd97uX693O
22
+ zv6981fyEg+aXLkxrkViM/tz2qR2ZE0jPhHTREPYeMEgptRkTmWSKAuLVWrJEfgl
23
+ DtkCAwEAAaN3MHUwCQYDVR0TBAIwADALBgNVHQ8EBAMCBLAwHQYDVR0OBBYEFEwe
24
+ nn6bfJADmuIDiMSOzedOrL+xMB0GA1UdEQQWMBSBEmRqYmVyZzk2QGdtYWlsLmNv
25
+ bTAdBgNVHRIEFjAUgRJkamJlcmc5NkBnbWFpbC5jb20wDQYJKoZIhvcNAQEFBQAD
26
+ ggEBAHmNOCWoDVD75zHFueY0viwGDVP1BNGFC+yXcb7u2GlK+nEMCORqzURbYPf7
27
+ tL+/hzmePIRz7i30UM//64GI1NLv9jl7nIwjhPpXpf7/lu2I9hOTsvwSumb5UiKC
28
+ /sqBxI3sfj9pr79Wpv4MuikX1XPik7Ncb7NPsJPw06Lvyc3Hkg5X2XpPtLtS+Gr2
29
+ wKJnmzb5rIPS1cmsqv0M9LPWflzfwoZ/SpnmhagP+g05p8bRNKjZSA2iImM/GyYZ
30
+ EJYzxdPOrx2n6NYR3Hk+vHP0U7UBSveI6+qx+ndQYaeyCn+GRX2PKS9h66YF/Q1V
31
+ tGSHgAmcLlkdGgan182qsE/4kKM=
32
+ -----END CERTIFICATE-----
33
+ date: 2015-11-08 00:00:00.000000000 Z
12
34
  dependencies:
13
35
  - !ruby/object:Gem::Dependency
14
36
  name: test-unit
@@ -60,13 +82,12 @@ files:
60
82
  - benchmarks/bench_ps.rb
61
83
  - doc/top.txt
62
84
  - examples/example_ps.rb
63
- - lib/sunos/sys/proctable.rb
85
+ - lib/sys-proctable.rb
64
86
  - lib/sys/proctable/version.rb
65
87
  - lib/sys/top.rb
66
88
  - sys-proctable.gemspec
67
89
  - test/test_sys_proctable_all.rb
68
- - test/test_sys_proctable_sunos.rb
69
- - test/test_sys_top.rb
90
+ - lib/sunos/sys/proctable.rb
70
91
  homepage: http://github.com/djberg96/sys-proctable
71
92
  licenses:
72
93
  - Artistic 2.0
@@ -88,7 +109,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
88
109
  version: '0'
89
110
  requirements: []
90
111
  rubyforge_project:
91
- rubygems_version: 2.4.5
112
+ rubygems_version: 2.5.0
92
113
  signing_key:
93
114
  specification_version: 4
94
115
  summary: An interface for providing process table information
metadata.gz.sig ADDED
Binary file