sys-cpu 0.8.3 → 1.0.3
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 +4 -4
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/{CHANGES.rdoc → CHANGES.md} +50 -25
- data/Gemfile +7 -0
- data/{MANIFEST.rdoc → MANIFEST.md} +12 -9
- data/{README.rdoc → README.md} +21 -21
- data/Rakefile +6 -8
- data/lib/sys/cpu.rb +3 -1
- data/lib/sys/darwin/sys/cpu.rb +167 -0
- data/lib/sys/linux/sys/cpu.rb +45 -15
- data/lib/sys/unix/sys/cpu.rb +41 -73
- data/lib/sys/windows/sys/cpu.rb +289 -271
- data/spec/spec_helper.rb +9 -0
- data/spec/sys_cpu_bsd_spec.rb +94 -0
- data/spec/sys_cpu_hpux_spec.rb +50 -0
- data/spec/sys_cpu_linux_spec.rb +53 -0
- data/spec/sys_cpu_spec.rb +18 -0
- data/spec/sys_cpu_sunos_spec.rb +80 -0
- data/spec/sys_cpu_windows_spec.rb +61 -0
- data/sys-cpu.gemspec +5 -5
- metadata +49 -56
- metadata.gz.sig +0 -0
- data/test/test_sys_cpu.rb +0 -23
- data/test/test_sys_cpu_bsd.rb +0 -97
- data/test/test_sys_cpu_hpux.rb +0 -49
- data/test/test_sys_cpu_linux.rb +0 -31
- data/test/test_sys_cpu_sunos.rb +0 -81
- data/test/test_sys_cpu_version.rb +0 -19
- data/test/test_sys_cpu_windows.rb +0 -72
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,9 @@
|
|
1
|
+
require 'rspec'
|
2
|
+
|
3
|
+
RSpec.configure do |config|
|
4
|
+
config.filter_run_excluding(:bsd) if RbConfig::CONFIG['host_os'] !~ /bsd|darwin|mach|osx/i
|
5
|
+
config.filter_run_excluding(:sunos) if RbConfig::CONFIG['host_os'] !~ /sunos|solaris/i
|
6
|
+
config.filter_run_excluding(:windows) if RbConfig::CONFIG['host_os'] !~ /mswin|win32|dos|mingw|cygwin/i
|
7
|
+
config.filter_run_excluding(:hpux) if RbConfig::CONFIG['host_os'] !~ /hpux/i
|
8
|
+
config.filter_run_excluding(:linux) if RbConfig::CONFIG['host_os'] !~ /linux/i
|
9
|
+
end
|
@@ -0,0 +1,94 @@
|
|
1
|
+
#############################################################
|
2
|
+
# test_sys_cpu_bsd.rb
|
3
|
+
#
|
4
|
+
# The test case for sys-cpu on BSD flavors, including OS X.
|
5
|
+
#############################################################
|
6
|
+
require 'sys/cpu'
|
7
|
+
require 'spec_helper'
|
8
|
+
|
9
|
+
RSpec.describe Sys::CPU, :bsd => true do
|
10
|
+
example "architecture method basic functionality" do
|
11
|
+
expect(Sys::CPU).to respond_to(:architecture)
|
12
|
+
expect{ Sys::CPU.architecture }.not_to raise_error
|
13
|
+
end
|
14
|
+
|
15
|
+
example "architecture method returns a sane value" do
|
16
|
+
expect(Sys::CPU.architecture).to be_kind_of(String)
|
17
|
+
expect(Sys::CPU.architecture.size).to be > 0
|
18
|
+
end
|
19
|
+
|
20
|
+
example "architecture method does not accept any arguments" do
|
21
|
+
expect{ Sys::CPU.architecture(0) }.to raise_error(ArgumentError)
|
22
|
+
end
|
23
|
+
|
24
|
+
example "freq method basic functionality" do
|
25
|
+
expect(Sys::CPU).to respond_to(:freq)
|
26
|
+
expect{ Sys::CPU.freq }.not_to raise_error
|
27
|
+
end
|
28
|
+
|
29
|
+
example "freq method returns expected value" do
|
30
|
+
expect(Sys::CPU.freq).to be_kind_of(Integer)
|
31
|
+
expect(Sys::CPU.freq).to be > 0
|
32
|
+
end
|
33
|
+
|
34
|
+
example "freq method does not accept any arguments" do
|
35
|
+
expect{ Sys::CPU.freq(0) }.to raise_error(ArgumentError)
|
36
|
+
end
|
37
|
+
|
38
|
+
example "load_avg method basic functionality" do
|
39
|
+
expect(Sys::CPU).to respond_to(:load_avg)
|
40
|
+
expect{ Sys::CPU.load_avg }.not_to raise_error
|
41
|
+
end
|
42
|
+
|
43
|
+
example "load_avg returns the expected results" do
|
44
|
+
expect(Sys::CPU.load_avg).to be_kind_of(Array)
|
45
|
+
expect(Sys::CPU.load_avg.length).to eq(3)
|
46
|
+
expect(Sys::CPU.load_avg[0]).to be_kind_of(Float)
|
47
|
+
end
|
48
|
+
|
49
|
+
example "load_avg does not accept any arguments" do
|
50
|
+
expect{ Sys::CPU.load_avg(0) }.to raise_error(ArgumentError)
|
51
|
+
end
|
52
|
+
|
53
|
+
example "machine method basic functionality" do
|
54
|
+
expect(Sys::CPU).to respond_to(:machine)
|
55
|
+
expect{ Sys::CPU.machine }.not_to raise_error
|
56
|
+
end
|
57
|
+
|
58
|
+
example "machine method returns sane value" do
|
59
|
+
expect(Sys::CPU.machine).to be_kind_of(String)
|
60
|
+
expect(Sys::CPU.machine.size).to be > 0
|
61
|
+
end
|
62
|
+
|
63
|
+
example "machine method does not accept any arguments" do
|
64
|
+
expect{ Sys::CPU.machine(0) }.to raise_error(ArgumentError)
|
65
|
+
end
|
66
|
+
|
67
|
+
example "model method basic functionality" do
|
68
|
+
expect(Sys::CPU).to respond_to(:model)
|
69
|
+
expect{ Sys::CPU.model }.not_to raise_error
|
70
|
+
end
|
71
|
+
|
72
|
+
example "model method returns sane value" do
|
73
|
+
expect(Sys::CPU.model).to be_kind_of(String)
|
74
|
+
expect(Sys::CPU.model.length).to be > 0
|
75
|
+
end
|
76
|
+
|
77
|
+
example "model method does not accept any arguments" do
|
78
|
+
expect{ Sys::CPU.model(0) }.to raise_error(ArgumentError)
|
79
|
+
end
|
80
|
+
|
81
|
+
example "num_cpu method basic functionality" do
|
82
|
+
expect(Sys::CPU).to respond_to(:num_cpu)
|
83
|
+
expect{ Sys::CPU.num_cpu }.not_to raise_error
|
84
|
+
end
|
85
|
+
|
86
|
+
example "num_cpu method returns expected value" do
|
87
|
+
expect(Sys::CPU.num_cpu).to be_kind_of(Integer)
|
88
|
+
expect(Sys::CPU.num_cpu).to be > 0
|
89
|
+
end
|
90
|
+
|
91
|
+
example "num_cpu method does not accept any arguments" do
|
92
|
+
expect{ Sys::CPU.num_cpu(0) }.to raise_error(ArgumentError)
|
93
|
+
end
|
94
|
+
end
|
@@ -0,0 +1,50 @@
|
|
1
|
+
#####################################################################
|
2
|
+
# sys_cpu_hpux_spec.rb
|
3
|
+
#
|
4
|
+
# Test suite for the HP-UX platform. This should be run via the
|
5
|
+
# 'rake test' task.
|
6
|
+
#####################################################################
|
7
|
+
require 'sys/cpu'
|
8
|
+
require 'spec_helper'
|
9
|
+
|
10
|
+
RSpec.describe Sys::CPU, :hpux => true do
|
11
|
+
example "cpu_freq" do
|
12
|
+
expect(Sys::CPU).to respond_to(:freq)
|
13
|
+
expect{ Sys::CPU.freq }.not_to raise_error
|
14
|
+
expect{ Sys::CPU.freq(0) }.not_to raise_error
|
15
|
+
expect(Sys::CPU.freq).to be_kind_of(Integer)
|
16
|
+
end
|
17
|
+
|
18
|
+
example "num_cpu" do
|
19
|
+
expect(Sys::CPU).to respond_to(:num_cpu)
|
20
|
+
expect{ Sys::CPU.num_cpu }.not_to raise_error
|
21
|
+
expect(Sys::CPU.num_cpu).to be_kind_of(Integer)
|
22
|
+
end
|
23
|
+
|
24
|
+
example "num_active_cpu" do
|
25
|
+
expect(Sys::CPU).to respond_to(:num_active_cpu)
|
26
|
+
expect{ Sys::CPU.num_active_cpu }.not_to raise_error
|
27
|
+
expect(Sys::CPU.num_active_cpu).to be_kind_of(Integer)
|
28
|
+
end
|
29
|
+
|
30
|
+
example "cpu_architecture" do
|
31
|
+
expect(Sys::CPU).to respond_to(:architecture)
|
32
|
+
expect{ Sys::CPU.architecture }.not_to raise_error
|
33
|
+
expect(Sys::CPU.architecture).to be_kind_of(String)
|
34
|
+
end
|
35
|
+
|
36
|
+
example "load_avg sanity check" do
|
37
|
+
expect(Sys::CPU).to respond_to(:load_avg)
|
38
|
+
expect{ Sys::CPU.load_avg }.not_to raise_error
|
39
|
+
expect{ Sys::CPU.load_avg(0) }.not_to raise_error
|
40
|
+
expect{ Sys::CPU.load_avg{ |e| }.not_to raise_error }
|
41
|
+
expect{ Sys::CPU.load_avg(0){ }.to raise_error(ArgumentError) }
|
42
|
+
end
|
43
|
+
|
44
|
+
example "load_avg expected results" do
|
45
|
+
expect(Sys::CPU.load_avg).to be_kind_of(Array)
|
46
|
+
expect(Sys::CPU.load_avg(0)).to be_kind_of(Array)
|
47
|
+
expect(Sys::CPU.load_avg.length).to eq(3)
|
48
|
+
expect(Sys::CPU.load_avg(0).length).to eq(3)
|
49
|
+
end
|
50
|
+
end
|
@@ -0,0 +1,53 @@
|
|
1
|
+
###########################################################
|
2
|
+
# sys_cpu_linux_spec.rb
|
3
|
+
#
|
4
|
+
# Specs for sys-cpu for Linux. This should be run via
|
5
|
+
# the 'rake spec' task.
|
6
|
+
###########################################################
|
7
|
+
require 'sys/cpu'
|
8
|
+
require 'spec_helper'
|
9
|
+
|
10
|
+
RSpec.describe Sys::CPU, :linux => true do
|
11
|
+
example "dynamic methods are defined as expected" do
|
12
|
+
expect{
|
13
|
+
Sys::CPU.processors{ |cs|
|
14
|
+
cs.members.each{ |m| cs[m].to_s }
|
15
|
+
}
|
16
|
+
}.not_to raise_error
|
17
|
+
end
|
18
|
+
|
19
|
+
example "load average works as expected" do
|
20
|
+
expect{ Sys::CPU.load_avg }.not_to raise_error
|
21
|
+
expect(Sys::CPU.load_avg.length).to eq(3)
|
22
|
+
end
|
23
|
+
|
24
|
+
example "cpu_stats works as expected" do
|
25
|
+
expect{ Sys::CPU.cpu_stats }.not_to raise_error
|
26
|
+
expect(Sys::CPU.cpu_stats).to be_kind_of(Hash)
|
27
|
+
expect(Sys::CPU.cpu_stats['cpu0'].length).to be >= 4
|
28
|
+
end
|
29
|
+
|
30
|
+
example "architecture works as expected" do
|
31
|
+
expect{ Sys::CPU.architecture }.not_to raise_error
|
32
|
+
expect(Sys::CPU.architecture).to be_kind_of(String)
|
33
|
+
end
|
34
|
+
|
35
|
+
example "model works as expected" do
|
36
|
+
expect{ Sys::CPU.model }.not_to raise_error
|
37
|
+
expect(Sys::CPU.model).to be_kind_of(String)
|
38
|
+
end
|
39
|
+
|
40
|
+
example "freq works as expected" do
|
41
|
+
expect{ Sys::CPU.freq }.not_to raise_error
|
42
|
+
expect(Sys::CPU.freq).to be_kind_of(Numeric)
|
43
|
+
end
|
44
|
+
|
45
|
+
example "num_cpu works as expected" do
|
46
|
+
expect{ Sys::CPU.num_cpu }.not_to raise_error
|
47
|
+
expect(Sys::CPU.num_cpu).to be_kind_of(Numeric)
|
48
|
+
end
|
49
|
+
|
50
|
+
example "bogus methods are not picked up by method_missing" do
|
51
|
+
expect{Sys::CPU.bogus }.to raise_error(NoMethodError)
|
52
|
+
end
|
53
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
#######################################################################
|
2
|
+
# sys_cpu_spec.rb
|
3
|
+
#
|
4
|
+
# Only shared specs go here. Everything else goes into its own tagged
|
5
|
+
# spec file.
|
6
|
+
#######################################################################
|
7
|
+
require 'sys/cpu'
|
8
|
+
require 'rspec'
|
9
|
+
|
10
|
+
RSpec.describe Sys::CPU::VERSION do
|
11
|
+
example "version number is set to the expected value" do
|
12
|
+
expect(Sys::CPU::VERSION).to eq('1.0.3')
|
13
|
+
end
|
14
|
+
|
15
|
+
example "version number is frozen" do
|
16
|
+
expect(Sys::CPU::VERSION).to be_frozen
|
17
|
+
end
|
18
|
+
end
|
@@ -0,0 +1,80 @@
|
|
1
|
+
###########################################################
|
2
|
+
# sys_cpu_sunos_spec.rb
|
3
|
+
#
|
4
|
+
# Test suite for sys-cpu on Solaris. This should be run
|
5
|
+
# via the 'rake spec' task.
|
6
|
+
###########################################################
|
7
|
+
require 'sys/cpu'
|
8
|
+
require 'spec_helper'
|
9
|
+
|
10
|
+
RSpec.describe Sys::CPU, :sunos => true do
|
11
|
+
example "freq method basic functionality" do
|
12
|
+
expect(Sys::CPU).to respond_to(:freq)
|
13
|
+
expect{ Sys::CPU.freq }.not_to raise_error
|
14
|
+
end
|
15
|
+
|
16
|
+
example "freq method does not accept any arguments" do
|
17
|
+
expect{ Sys::CPU.freq(0) }.to raise_error(ArgumentError)
|
18
|
+
end
|
19
|
+
|
20
|
+
example "freq method returns a sane value" do
|
21
|
+
expect(Sys::CPU.freq).to be_kind_of(Integer)
|
22
|
+
expect(Sys::CPU.freq).to be > 100
|
23
|
+
end
|
24
|
+
|
25
|
+
example "fpu_type basic functionality" do
|
26
|
+
expect(Sys::CPU).to respond_to(:fpu_type)
|
27
|
+
expect{ Sys::CPU.fpu_type }.not_to raise_error
|
28
|
+
end
|
29
|
+
|
30
|
+
example "fpu_type returns a sane value" do
|
31
|
+
expect(Sys::CPU.fpu_type).to be_kind_of(String)
|
32
|
+
expect(Sys::CPU.fpu_type).not_to be_empty
|
33
|
+
end
|
34
|
+
|
35
|
+
example "load_avg basic functionality" do
|
36
|
+
expect(Sys::CPU).to respond_to(:load_avg)
|
37
|
+
expect{ Sys::CPU.load_avg }.not_to raise_error
|
38
|
+
end
|
39
|
+
|
40
|
+
example "load_avg method returns the expected values" do
|
41
|
+
expect(Sys::CPU.load_avg).to be_kind_of(Array)
|
42
|
+
expect(Sys::CPU.load_avg.length).to eq(3)
|
43
|
+
expect(Sys::CPU.load_avg.first).to be_kind_of(Float)
|
44
|
+
end
|
45
|
+
|
46
|
+
example "model method basic functionality" do
|
47
|
+
expect(Sys::CPU).to respond_to(:model)
|
48
|
+
expect{ Sys::CPU.model }.not_to raise_error
|
49
|
+
end
|
50
|
+
|
51
|
+
example "model method returns a sane value" do
|
52
|
+
expect(Sys::CPU.model).to be_kind_of(String)
|
53
|
+
expect(Sys::CPU.model).not_to be_empty
|
54
|
+
end
|
55
|
+
|
56
|
+
example "num_cpu method basic functionalty" do
|
57
|
+
expect(Sys::CPU).to respond_to(:num_cpu)
|
58
|
+
expect{ Sys::CPU.num_cpu }.not_to raise_error
|
59
|
+
end
|
60
|
+
|
61
|
+
example "num_cpu method returns a sane value" do
|
62
|
+
expect(Sys::CPU.num_cpu).to be_kind_of(Integer)
|
63
|
+
expect(Sys::CPU.num_cpu).to be > 0
|
64
|
+
end
|
65
|
+
|
66
|
+
example "state basic functionality" do
|
67
|
+
expect(Sys::CPU).to respond_to(:state)
|
68
|
+
expect{ Sys::CPU.state }.not_to raise_error
|
69
|
+
end
|
70
|
+
|
71
|
+
example "state method accepts one optional argument" do
|
72
|
+
expect{ Sys::CPU.state(0) }.not_to raise_error
|
73
|
+
expect{ Sys::CPU.state(0,0) }.to raise_error(ArgumentError)
|
74
|
+
end
|
75
|
+
|
76
|
+
example "state method returns a sane value" do
|
77
|
+
expect(Sys::CPU.state(0)).to be_kind_of(String)
|
78
|
+
expect(Sys::CPU.state.empty?).to be false
|
79
|
+
end
|
80
|
+
end
|
@@ -0,0 +1,61 @@
|
|
1
|
+
######################################################################
|
2
|
+
# sys_cpu_windows_spec.rb
|
3
|
+
#
|
4
|
+
# Test suite for MS Windows systems. This should be run via the
|
5
|
+
# 'rake test' task.
|
6
|
+
######################################################################
|
7
|
+
require 'spec_helper'
|
8
|
+
require 'sys/cpu'
|
9
|
+
require 'socket'
|
10
|
+
|
11
|
+
RSpec.describe Sys::CPU, :windows => true do
|
12
|
+
let(:host) { Socket.gethostname }
|
13
|
+
|
14
|
+
example "architecture" do
|
15
|
+
expect(Sys::CPU).to respond_to(:architecture)
|
16
|
+
expect{ Sys::CPU.architecture }.not_to raise_error
|
17
|
+
expect{ Sys::CPU.architecture(host) }.not_to raise_error
|
18
|
+
expect(Sys::CPU.architecture).to be_kind_of(String)
|
19
|
+
end
|
20
|
+
|
21
|
+
example "freq" do
|
22
|
+
expect(Sys::CPU).to respond_to(:freq)
|
23
|
+
expect{ Sys::CPU.freq }.not_to raise_error
|
24
|
+
expect{ Sys::CPU.freq(0) }.not_to raise_error
|
25
|
+
expect{ Sys::CPU.freq(0, host) }.not_to raise_error
|
26
|
+
expect(Sys::CPU.freq).to be_kind_of(Integer)
|
27
|
+
end
|
28
|
+
|
29
|
+
example "model" do
|
30
|
+
expect(Sys::CPU).to respond_to(:model)
|
31
|
+
expect{ Sys::CPU.model }.not_to raise_error
|
32
|
+
expect{ Sys::CPU.model(host) }.not_to raise_error
|
33
|
+
expect(Sys::CPU.model).to be_kind_of(String)
|
34
|
+
end
|
35
|
+
|
36
|
+
example "num_cpu" do
|
37
|
+
expect(Sys::CPU).to respond_to(:num_cpu)
|
38
|
+
expect{ Sys::CPU.num_cpu }.not_to raise_error
|
39
|
+
expect{ Sys::CPU.num_cpu(host) }.not_to raise_error
|
40
|
+
expect(Sys::CPU.num_cpu).to be_kind_of(Integer)
|
41
|
+
end
|
42
|
+
|
43
|
+
example "cpu_type" do
|
44
|
+
expect(Sys::CPU).to respond_to(:cpu_type)
|
45
|
+
expect{ Sys::CPU.cpu_type }.not_to raise_error
|
46
|
+
expect{ Sys::CPU.cpu_type(host) }.not_to raise_error
|
47
|
+
expect(Sys::CPU.cpu_type).to be_kind_of(String)
|
48
|
+
end
|
49
|
+
|
50
|
+
example "load_avg" do
|
51
|
+
expect(Sys::CPU).to respond_to(:load_avg)
|
52
|
+
expect{ Sys::CPU.load_avg }.not_to raise_error
|
53
|
+
expect{ Sys::CPU.load_avg(0, host) }.not_to raise_error
|
54
|
+
expect(Sys::CPU.load_avg).to be_kind_of(Integer)
|
55
|
+
end
|
56
|
+
|
57
|
+
example "processors" do
|
58
|
+
expect(Sys::CPU).to respond_to(:processors)
|
59
|
+
expect{ Sys::CPU.processors{}.not_to raise_error }
|
60
|
+
end
|
61
|
+
end
|
data/sys-cpu.gemspec
CHANGED
@@ -2,13 +2,13 @@ require 'rubygems'
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |spec|
|
4
4
|
spec.name = 'sys-cpu'
|
5
|
-
spec.version = '0.
|
5
|
+
spec.version = '1.0.3'
|
6
6
|
spec.author = 'Daniel J. Berger'
|
7
7
|
spec.email = 'djberg96@gmail.com'
|
8
8
|
spec.license = 'Apache-2.0'
|
9
9
|
spec.homepage = 'https://github.com/djberg96/sys-cpu'
|
10
10
|
spec.summary = 'A Ruby interface for providing CPU information'
|
11
|
-
spec.
|
11
|
+
spec.test_files = Dir['spec/*.rb']
|
12
12
|
spec.files = Dir['**/*'].reject{ |f| f.include?('git') }
|
13
13
|
spec.cert_chain = ['certs/djberg96_pub.pem']
|
14
14
|
|
@@ -17,15 +17,15 @@ Gem::Specification.new do |spec|
|
|
17
17
|
# The ffi dependency is only relevent for the Unix version. Given the
|
18
18
|
# ubiquity of ffi these days, I felt a bogus dependency on ffi for Windows
|
19
19
|
# and Linux was worth the tradeoff of not having to create 3 separate gems.
|
20
|
-
spec.add_dependency('ffi')
|
20
|
+
spec.add_dependency('ffi', '~> 1.1')
|
21
21
|
|
22
|
-
spec.add_development_dependency('test-unit')
|
23
22
|
spec.add_development_dependency('rake')
|
23
|
+
spec.add_development_dependency('rspec', '~> 3.9')
|
24
24
|
|
25
25
|
spec.metadata = {
|
26
26
|
'homepage_uri' => 'https://github.com/djberg96/sys-cpu',
|
27
27
|
'bug_tracker_uri' => 'https://github.com/djberg96/sys-cpu/issues',
|
28
|
-
'changelog_uri' => 'https://github.com/djberg96/sys-cpu/blob/ffi/CHANGES',
|
28
|
+
'changelog_uri' => 'https://github.com/djberg96/sys-cpu/blob/ffi/CHANGES.md',
|
29
29
|
'documentation_uri' => 'https://github.com/djberg96/sys-cpu/wiki',
|
30
30
|
'source_code_uri' => 'https://github.com/djberg96/sys-cpu',
|
31
31
|
'wiki_uri' => 'https://github.com/djberg96/sys-cpu/wiki'
|
metadata
CHANGED
@@ -1,11 +1,11 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sys-cpu
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 1.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Daniel J. Berger
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain:
|
11
11
|
- |
|
@@ -35,24 +35,24 @@ cert_chain:
|
|
35
35
|
ORVCZpRuCPpmC8qmqxUnARDArzucjaclkxjLWvCVHeFa9UP7K3Nl9oTjJNv+7/jM
|
36
36
|
WZs4eecIcUc4tKdHxcAJ0MO/Dkqq7hGaiHpwKY76wQ1+8xAh
|
37
37
|
-----END CERTIFICATE-----
|
38
|
-
date:
|
38
|
+
date: 2021-01-28 00:00:00.000000000 Z
|
39
39
|
dependencies:
|
40
40
|
- !ruby/object:Gem::Dependency
|
41
41
|
name: ffi
|
42
42
|
requirement: !ruby/object:Gem::Requirement
|
43
43
|
requirements:
|
44
|
-
- - "
|
44
|
+
- - "~>"
|
45
45
|
- !ruby/object:Gem::Version
|
46
|
-
version: '
|
46
|
+
version: '1.1'
|
47
47
|
type: :runtime
|
48
48
|
prerelease: false
|
49
49
|
version_requirements: !ruby/object:Gem::Requirement
|
50
50
|
requirements:
|
51
|
-
- - "
|
51
|
+
- - "~>"
|
52
52
|
- !ruby/object:Gem::Version
|
53
|
-
version: '
|
53
|
+
version: '1.1'
|
54
54
|
- !ruby/object:Gem::Dependency
|
55
|
-
name:
|
55
|
+
name: rake
|
56
56
|
requirement: !ruby/object:Gem::Requirement
|
57
57
|
requirements:
|
58
58
|
- - ">="
|
@@ -66,19 +66,19 @@ dependencies:
|
|
66
66
|
- !ruby/object:Gem::Version
|
67
67
|
version: '0'
|
68
68
|
- !ruby/object:Gem::Dependency
|
69
|
-
name:
|
69
|
+
name: rspec
|
70
70
|
requirement: !ruby/object:Gem::Requirement
|
71
71
|
requirements:
|
72
|
-
- - "
|
72
|
+
- - "~>"
|
73
73
|
- !ruby/object:Gem::Version
|
74
|
-
version: '
|
74
|
+
version: '3.9'
|
75
75
|
type: :development
|
76
76
|
prerelease: false
|
77
77
|
version_requirements: !ruby/object:Gem::Requirement
|
78
78
|
requirements:
|
79
|
-
- - "
|
79
|
+
- - "~>"
|
80
80
|
- !ruby/object:Gem::Version
|
81
|
-
version: '
|
81
|
+
version: '3.9'
|
82
82
|
description: |2
|
83
83
|
The sys-cpu library provides an interface for gathering information
|
84
84
|
about your system's processor(s). Information includes speed, type,
|
@@ -86,64 +86,51 @@ description: |2
|
|
86
86
|
email: djberg96@gmail.com
|
87
87
|
executables: []
|
88
88
|
extensions: []
|
89
|
-
extra_rdoc_files:
|
90
|
-
- CHANGES.rdoc
|
91
|
-
- MANIFEST.rdoc
|
92
|
-
- README.rdoc
|
89
|
+
extra_rdoc_files: []
|
93
90
|
files:
|
94
|
-
-
|
91
|
+
- CHANGES.md
|
92
|
+
- Gemfile
|
95
93
|
- LICENSE
|
96
|
-
-
|
97
|
-
-
|
98
|
-
- test/test_sys_cpu_windows.rb
|
99
|
-
- test/test_sys_cpu_bsd.rb
|
100
|
-
- test/test_sys_cpu_version.rb
|
101
|
-
- test/test_sys_cpu_sunos.rb
|
102
|
-
- test/test_sys_cpu_hpux.rb
|
103
|
-
- test/test_sys_cpu_linux.rb
|
94
|
+
- MANIFEST.md
|
95
|
+
- README.md
|
104
96
|
- Rakefile
|
105
|
-
- certs
|
106
97
|
- certs/djberg96_pub.pem
|
107
|
-
-
|
108
|
-
-
|
98
|
+
- doc/bsd.txt
|
99
|
+
- doc/hpux.txt
|
100
|
+
- doc/linux.txt
|
101
|
+
- doc/sunos.txt
|
102
|
+
- doc/windows.txt
|
103
|
+
- examples/example_sys_cpu_bsd.rb
|
109
104
|
- examples/example_sys_cpu_hpux.rb
|
105
|
+
- examples/example_sys_cpu_linux.rb
|
110
106
|
- examples/example_sys_cpu_sunos.rb
|
111
|
-
- examples/example_sys_cpu_bsd.rb
|
112
107
|
- examples/example_sys_cpu_windows.rb
|
113
|
-
-
|
114
|
-
- lib
|
115
|
-
- lib/sys
|
116
|
-
- lib/sys/unix
|
117
|
-
- lib/sys/unix/sys
|
118
|
-
- lib/sys/unix/sys/cpu.rb
|
119
|
-
- lib/sys/linux
|
120
|
-
- lib/sys/linux/sys
|
121
|
-
- lib/sys/linux/sys/cpu.rb
|
108
|
+
- install.rb
|
109
|
+
- lib/sys-cpu.rb
|
122
110
|
- lib/sys/cpu.rb
|
123
|
-
- lib/sys/
|
124
|
-
- lib/sys/
|
111
|
+
- lib/sys/darwin/sys/cpu.rb
|
112
|
+
- lib/sys/linux/sys/cpu.rb
|
113
|
+
- lib/sys/unix/sys/cpu.rb
|
125
114
|
- lib/sys/windows/sys/cpu.rb
|
126
|
-
-
|
127
|
-
-
|
128
|
-
-
|
129
|
-
-
|
130
|
-
-
|
131
|
-
-
|
132
|
-
-
|
133
|
-
-
|
134
|
-
- MANIFEST.rdoc
|
135
|
-
- README.rdoc
|
115
|
+
- spec/spec_helper.rb
|
116
|
+
- spec/sys_cpu_bsd_spec.rb
|
117
|
+
- spec/sys_cpu_hpux_spec.rb
|
118
|
+
- spec/sys_cpu_linux_spec.rb
|
119
|
+
- spec/sys_cpu_spec.rb
|
120
|
+
- spec/sys_cpu_sunos_spec.rb
|
121
|
+
- spec/sys_cpu_windows_spec.rb
|
122
|
+
- sys-cpu.gemspec
|
136
123
|
homepage: https://github.com/djberg96/sys-cpu
|
137
124
|
licenses:
|
138
125
|
- Apache-2.0
|
139
126
|
metadata:
|
140
127
|
homepage_uri: https://github.com/djberg96/sys-cpu
|
141
128
|
bug_tracker_uri: https://github.com/djberg96/sys-cpu/issues
|
142
|
-
changelog_uri: https://github.com/djberg96/sys-cpu/blob/ffi/CHANGES
|
129
|
+
changelog_uri: https://github.com/djberg96/sys-cpu/blob/ffi/CHANGES.md
|
143
130
|
documentation_uri: https://github.com/djberg96/sys-cpu/wiki
|
144
131
|
source_code_uri: https://github.com/djberg96/sys-cpu
|
145
132
|
wiki_uri: https://github.com/djberg96/sys-cpu/wiki
|
146
|
-
post_install_message:
|
133
|
+
post_install_message:
|
147
134
|
rdoc_options: []
|
148
135
|
require_paths:
|
149
136
|
- lib
|
@@ -158,9 +145,15 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
158
145
|
- !ruby/object:Gem::Version
|
159
146
|
version: '0'
|
160
147
|
requirements: []
|
161
|
-
rubygems_version: 3.0.
|
162
|
-
signing_key:
|
148
|
+
rubygems_version: 3.0.3
|
149
|
+
signing_key:
|
163
150
|
specification_version: 4
|
164
151
|
summary: A Ruby interface for providing CPU information
|
165
152
|
test_files:
|
166
|
-
-
|
153
|
+
- spec/spec_helper.rb
|
154
|
+
- spec/sys_cpu_bsd_spec.rb
|
155
|
+
- spec/sys_cpu_sunos_spec.rb
|
156
|
+
- spec/sys_cpu_hpux_spec.rb
|
157
|
+
- spec/sys_cpu_linux_spec.rb
|
158
|
+
- spec/sys_cpu_windows_spec.rb
|
159
|
+
- spec/sys_cpu_spec.rb
|