sys-cpu 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/{CHANGES.rdoc → CHANGES.md} +30 -27
- data/{MANIFEST.rdoc → MANIFEST.md} +3 -3
- data/{README.rdoc → README.md} +20 -20
- data/Rakefile +1 -1
- data/lib/sys/cpu.rb +1 -1
- data/spec/sys_cpu_spec.rb +1 -1
- data/sys-cpu.gemspec +2 -2
- metadata +29 -44
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3d1988f097f8efd9447e33fd135d373fccc9cbfa699a2c67257361e50367a661
|
4
|
+
data.tar.gz: e2abfb34d4afe062b47cac1bc1a73fb79a609dc55c5070d03bee09f7c841f9d9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9fd5d3cabaf78df0ea92dae46081325dcd9569cfd10af7c071cf2532d87b09ec191d15377fe1ce5aa2acf34db49d09ccfee0c6c4bdb7dec914ba4be61e57565d
|
7
|
+
data.tar.gz: c11064f1318983072179f78c2fb3b2eb4ac23b8bbe0b266c0e0ba7174e3f77b4b9ccb27184b4ffdb70c07bcef771ec36ee55b8cb3a8c0a85c2c2ee3374dfd97f
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data.tar.gz.sig
CHANGED
Binary file
|
data/{CHANGES.rdoc → CHANGES.md}
RENAMED
@@ -1,47 +1,50 @@
|
|
1
|
-
|
1
|
+
## 1.0.1 - 20-Dec-2020
|
2
|
+
* Switched from rdoc to markdown.
|
3
|
+
|
4
|
+
## 1.0.0 - 23-Oct-2020
|
2
5
|
* Fixed a bug in the Windows version where the attempt to convert the ConfigManagerErrorCode
|
3
6
|
to a string was busted. Coincidentally, this also exposed a core bug in JRuby (see PR #6443).
|
4
7
|
Thanks go to G. Gibson for reporting the issue.
|
5
8
|
* Switched the tests from test-unit to rspec.
|
6
9
|
|
7
|
-
|
10
|
+
## 0.9.0 - 12-May-2020
|
8
11
|
* Added explicit freq, architecture, num_cpu and model methods to the Linux
|
9
12
|
version in an effort to create a common interface across platforms.
|
10
13
|
* Modified the Linux version so that method_missing will raise a NoMethodError
|
11
14
|
if you try to call access an attribute that doesn't exist.
|
12
15
|
* Some updates to the Linux tests.
|
13
16
|
|
14
|
-
|
17
|
+
## 0.8.3 - 18-Mar-2020
|
15
18
|
* Properly include a LICENSE file as per the Apache-2.0 license.
|
16
19
|
|
17
|
-
|
20
|
+
## 0.8.2 - 14-Jan-2020
|
18
21
|
* Added explicit .rdoc extension to README, CHANGES and MANIFEST files.
|
19
22
|
* Fixed license name in README.
|
20
23
|
|
21
|
-
|
24
|
+
## 0.8.1 - 4-Nov-2018
|
22
25
|
* Added metadata to the gemspec.
|
23
26
|
* Fixed missing hyphen in license name.
|
24
27
|
|
25
|
-
|
28
|
+
## 0.8.0 - 17-Oct-2018
|
26
29
|
* Switched license to Apache 2.0.
|
27
30
|
* Updated documentation for the cpu_stats method on Linux.
|
28
31
|
* The VERSION constant is now frozen.
|
29
32
|
* Now uses require_relative internally where needed.
|
30
33
|
|
31
|
-
|
34
|
+
## 0.7.2 - 5-Sep-2015
|
32
35
|
* Replaced a global array with a constant in the Linux version. Thanks go
|
33
36
|
to Yorick Peterse for the patch.
|
34
37
|
* Added method comments back to the Unix version.
|
35
38
|
* Added a sys-cpu.rb stub file for your convenience.
|
36
39
|
* This gem is now signed.
|
37
40
|
|
38
|
-
|
41
|
+
## 0.7.1 - 2-May-2013
|
39
42
|
* Added a workaround for a win32ole bug in the Windows version.
|
40
43
|
* Reorganized code so that there is now a single gem rather than three
|
41
44
|
separate platform gems.
|
42
45
|
* Updated test-unit dependency which let me simplify the test files a bit.
|
43
46
|
|
44
|
-
|
47
|
+
## 0.7.0 - 14-Dec-2011
|
45
48
|
* Code base now uses FFI. However, HP-UX is not currently supported.
|
46
49
|
HP-UX users should continue to use the 0.6.x version. Note that
|
47
50
|
the code base remains unchanged on Linux and Windows.
|
@@ -50,7 +53,7 @@
|
|
50
53
|
* The type method has been changed to cpu_type on Windows.
|
51
54
|
* Some Rakefile and test suite updates.
|
52
55
|
|
53
|
-
|
56
|
+
## 0.6.4 - 27-Sep-2011
|
54
57
|
* The CPU.freq method now works on OSX.
|
55
58
|
* The CPU.model method on OSX has been altered. Previously it
|
56
59
|
returned the machine model. However, the information is limited.
|
@@ -58,7 +61,7 @@
|
|
58
61
|
* The Linux and Windows gems now have a 'universal' architecture.
|
59
62
|
* Refactored the clean task in the Rakefile.
|
60
63
|
|
61
|
-
|
64
|
+
## 0.6.3 - 9-Oct-2010
|
62
65
|
* Fixed a bug in the install.rb file and refactored it a bit. Thanks go
|
63
66
|
to Di-an Jan for the spot. Note, however, that this file will eventually
|
64
67
|
be removed and/or integrated into the Linux source file.
|
@@ -66,7 +69,7 @@
|
|
66
69
|
* Fixed and updated the CPU.architecture method on MS Windows to handle IA64
|
67
70
|
and x64 architectures.
|
68
71
|
|
69
|
-
|
72
|
+
## 0.6.2 - 1-Jan-2010
|
70
73
|
* Fixed a bug in the cpu_freq function (which would only be noticed on
|
71
74
|
certain platforms in cases where the CPU.freq method failed). Thanks
|
72
75
|
go to Edho P Arief for the spot.
|
@@ -79,13 +82,13 @@
|
|
79
82
|
* Test files renamed.
|
80
83
|
* Added test-unit 2.x as a development dependency.
|
81
84
|
|
82
|
-
|
85
|
+
## 0.6.1 - 4-Jan-2009
|
83
86
|
* Fix for OS X 10.5.x. Thanks go to Victor Costan for the spot and the patch.
|
84
87
|
* Updated the gemspec and some other minor changes.
|
85
88
|
* On MS Windows the impersonation level is now explicitly set to 'impersonate'
|
86
89
|
to avoid issues where systems might be using an older version of WMI.
|
87
90
|
|
88
|
-
|
91
|
+
## 0.6.0 - 26-Apr-2007
|
89
92
|
* Added support for most BSD flavors, including OS X. The freebsd.c file is
|
90
93
|
now just bsd.c.
|
91
94
|
* The CPU.type method for Solaris has been changed to CPU.cpu_type to avoid
|
@@ -97,7 +100,7 @@
|
|
97
100
|
* Improved RDoc comments in the C source files.
|
98
101
|
* Changed CPUError to CPU::Error.
|
99
102
|
|
100
|
-
|
103
|
+
## 0.5.5 - 17-Nov-2006
|
101
104
|
* Fixed a bug in the Linux version where there could be a key but no
|
102
105
|
associated value, causing a String#strip! call to fail. Now the value is
|
103
106
|
simply left at nil.
|
@@ -107,14 +110,14 @@
|
|
107
110
|
* Modified the gemspec so that it sets the platform properly for Linux
|
108
111
|
and Windows.
|
109
112
|
|
110
|
-
|
113
|
+
## 0.5.4 - 12-Jul-2006
|
111
114
|
* Added a gemspec (and a gem on RubyForge).
|
112
115
|
* The CPU.architecture method on HP-UX now returns nil if it cannot be
|
113
116
|
determined instead of "Unknown" for consistency with the other
|
114
117
|
platforms.
|
115
118
|
* Inlined the RDoc and made some minor cosmetic source code changes.
|
116
119
|
|
117
|
-
|
120
|
+
## 0.5.3 - 4-May-2006
|
118
121
|
* Fixed in a bug in the Solaris version where CPU.load_avg returned bad values
|
119
122
|
when compiled in 64 bit mode. Thanks go to James Hranicky for the spot and
|
120
123
|
both James Hranicky and Peter Tribble (via comp.unix.solaris) for patches.
|
@@ -122,7 +125,7 @@
|
|
122
125
|
which test suite to run. All platforms now use 'ts_all.rb', which will run
|
123
126
|
the appropriate test case behind the scenes.
|
124
127
|
|
125
|
-
|
128
|
+
## 0.5.2 - 24-Jun-2005
|
126
129
|
* Bug fixed on Linux where empty lines could cause problems. This affected
|
127
130
|
both the install.rb and linux.rb files, though it only seems to have been
|
128
131
|
an issue on the 2.6+ kernel.
|
@@ -131,7 +134,7 @@
|
|
131
134
|
is the only entry.
|
132
135
|
* Added a sample program for Linux under the 'examples' directory.
|
133
136
|
|
134
|
-
|
137
|
+
## 0.5.1 - 5-May-2005
|
135
138
|
* Fixed a potential bug in the FreeBSD version of CPU.model.
|
136
139
|
* Eliminated some warnings in the FreeBSD version.
|
137
140
|
* Moved examples directory to the toplevel package directory.
|
@@ -144,7 +147,7 @@
|
|
144
147
|
doc/linux.txt.
|
145
148
|
* Some $LOAD_PATH setup changes in the unit tests.
|
146
149
|
|
147
|
-
|
150
|
+
## 0.5.0 - 26-Jun-2004
|
148
151
|
* Now requires Ruby 1.8.0 or later.
|
149
152
|
* FreeBSD support added.
|
150
153
|
* Replaced 'CPUException' with 'CPUError'
|
@@ -158,7 +161,7 @@
|
|
158
161
|
* The .html files have been removed. You can generate the html on your own
|
159
162
|
if you like.
|
160
163
|
|
161
|
-
|
164
|
+
## 0.4.0 - 18-Sep-2003
|
162
165
|
* Added MS Windows support
|
163
166
|
* Changed some method names. The "cpu" has been dropped from most method
|
164
167
|
names. See documentation for details.
|
@@ -170,14 +173,14 @@
|
|
170
173
|
* Minor API change for the load_avg() method on HP-UX. It now accepts a
|
171
174
|
CPU number as an argument.
|
172
175
|
|
173
|
-
|
176
|
+
## 0.3.1 - 16-Jul-2003
|
174
177
|
* Fixed a bug in the Solaris version that was using up and not
|
175
178
|
freeing file descriptors.
|
176
179
|
* Added html doc for Solaris under doc directory.
|
177
180
|
* Minor changes to test_hpux.rb and test_sunos.rb
|
178
181
|
* Minor README changes.
|
179
182
|
|
180
|
-
|
183
|
+
## 0.3.0 - 30-Jun-2003
|
181
184
|
* Added HP-UX support
|
182
185
|
* Removed the VERSION class method. Use the constant instead
|
183
186
|
* Changed license to "Artistic"
|
@@ -186,7 +189,7 @@
|
|
186
189
|
* Modified extconf.rb, moving some of the dynamic test generation
|
187
190
|
into separate files
|
188
191
|
|
189
|
-
|
192
|
+
## 0.2.2 - 25-Mar-2003
|
190
193
|
* fpu_type and cpu_type now return nil if not found (Solaris)
|
191
194
|
* CPUException is now a direct subclass of StandardError
|
192
195
|
* Modified extconf.rb script
|
@@ -194,19 +197,19 @@
|
|
194
197
|
* Added another test to the solaris test suite
|
195
198
|
* Important note added to INSTALL file
|
196
199
|
|
197
|
-
|
200
|
+
## 0.2.1 - 12-Mar-2003
|
198
201
|
* Added the cpu_stats() class method for Linux, which contains the
|
199
202
|
data from the 'cpu' lines of /proc/stat
|
200
203
|
* Minor fix for extconf.rb (thanks Michael Granger)
|
201
204
|
* Some tests added to Linux test suite
|
202
205
|
* MANIFEST correction
|
203
206
|
|
204
|
-
|
207
|
+
## 0.2.0 - 13-Feb-2003
|
205
208
|
* Linux support added (pure Ruby only)
|
206
209
|
* Many changes to extconf.rb to support Linux version
|
207
210
|
* sys-uname prerequisite dropped
|
208
211
|
* rd2 documentation now kept separate from source
|
209
212
|
|
210
|
-
|
213
|
+
## 0.1.0 - 3-Feb-2003
|
211
214
|
* Initial release
|
212
215
|
* Currently supports Solaris (only)
|
data/{README.rdoc → README.md}
RENAMED
@@ -1,22 +1,22 @@
|
|
1
|
-
|
1
|
+
## Description
|
2
2
|
A Ruby interface for getting cpu information.
|
3
3
|
|
4
|
-
|
5
|
-
|
4
|
+
## Installation
|
5
|
+
`gem install sys-cpu`
|
6
6
|
|
7
|
-
|
8
|
-
|
7
|
+
## Adding the trusted cert
|
8
|
+
`gem cert --add <(curl -Ls https://raw.githubusercontent.com/djberg96/sys-cpu/ffi/certs/djberg96_pub.pem)`
|
9
9
|
|
10
|
-
|
11
|
-
|
10
|
+
## Notes
|
11
|
+
### Solaris
|
12
12
|
Currently there is no +processors+ iterative method for multi-cpu systems.
|
13
13
|
I plan to add it this in a future release.
|
14
14
|
|
15
|
-
|
15
|
+
### OS X
|
16
16
|
The CPU.model method returns very limited information. I do not yet know
|
17
17
|
how to get more detailed information.
|
18
18
|
|
19
|
-
|
19
|
+
### Linux
|
20
20
|
This is pure Ruby. This version reads information out of /proc/cpuinfo and
|
21
21
|
/proc/loadavg, so if /proc isn't mounted it won't work.
|
22
22
|
|
@@ -30,7 +30,7 @@ build process because the fields vary depending on your setup. So, don't
|
|
30
30
|
look at it until *after* you've installed it. You will see a doc/linux.txt
|
31
31
|
file after you run +rake install+ (via install.rb).
|
32
32
|
|
33
|
-
|
33
|
+
### HP-UX
|
34
34
|
Unlike other platforms, you can get load averages for an individual cpu in
|
35
35
|
multi-cpu systems. See documentation for more details.
|
36
36
|
|
@@ -38,38 +38,38 @@ Note that version 0.7.x and later will not work on HP-UX because of the
|
|
38
38
|
switch to FFI and the lack of a testing platform. However, version 0.6.x
|
39
39
|
will work just fine.
|
40
40
|
|
41
|
-
|
41
|
+
### MS Windows
|
42
42
|
This is a pure Ruby implementation using the win32ole package + WMI. The C
|
43
43
|
version has been scrapped.
|
44
44
|
|
45
45
|
As of version 0.5.0, the CPU.usage method has been removed in favor of the
|
46
46
|
CPU.load_avg method. This does not (currently) use a perf counter, so there
|
47
|
-
is no longer any delay.
|
48
|
-
+supported+ method has been dropped.
|
47
|
+
is no longer any delay. Also, the +processors+ method has been added and the
|
48
|
+
+supported+ method has been dropped. See the documentation for other changes.
|
49
49
|
|
50
|
-
|
50
|
+
## Acknowledgements
|
51
51
|
Thanks go to the MPlayer team for some source code that helped me on
|
52
52
|
certain versions of FreeBSD in the original C version.
|
53
53
|
|
54
|
-
|
54
|
+
## Known Bugs
|
55
55
|
None that I'm aware of. Please report bugs on the project page at:
|
56
56
|
|
57
57
|
https://github.com/djberg96/sys-cpu
|
58
58
|
|
59
|
-
|
59
|
+
## Future Plans
|
60
60
|
* Add iterative CPU.processors method.
|
61
61
|
* Add more information in general, such as what +prtdiag+ shows.
|
62
62
|
|
63
|
-
|
63
|
+
## License
|
64
64
|
Apache-2.0
|
65
65
|
|
66
|
-
|
66
|
+
## Copyright
|
67
67
|
(C) 2003-2020 Daniel J. Berger, All Rights Reserved
|
68
68
|
|
69
|
-
|
69
|
+
## Warranty
|
70
70
|
This package is provided "as is" and without any express or
|
71
71
|
implied warranties, including, without limitation, the implied
|
72
72
|
warranties of merchantability and fitness for a particular purpose.
|
73
73
|
|
74
|
-
|
74
|
+
## Author
|
75
75
|
Daniel J. Berger
|
data/Rakefile
CHANGED
@@ -12,7 +12,7 @@ namespace 'gem' do
|
|
12
12
|
require 'rubygems/package'
|
13
13
|
spec = eval(IO.read('sys-cpu.gemspec'))
|
14
14
|
spec.signing_key = File.join(Dir.home, '.ssh', 'gem-private_key.pem')
|
15
|
-
Gem::Package.build(spec
|
15
|
+
Gem::Package.build(spec)
|
16
16
|
end
|
17
17
|
|
18
18
|
desc "Install the sys-cpu gem"
|
data/lib/sys/cpu.rb
CHANGED
data/spec/sys_cpu_spec.rb
CHANGED
data/sys-cpu.gemspec
CHANGED
@@ -2,7 +2,7 @@ require 'rubygems'
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |spec|
|
4
4
|
spec.name = 'sys-cpu'
|
5
|
-
spec.version = '1.0.
|
5
|
+
spec.version = '1.0.1'
|
6
6
|
spec.author = 'Daniel J. Berger'
|
7
7
|
spec.email = 'djberg96@gmail.com'
|
8
8
|
spec.license = 'Apache-2.0'
|
@@ -25,7 +25,7 @@ Gem::Specification.new do |spec|
|
|
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,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sys-cpu
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Daniel J. Berger
|
@@ -35,7 +35,7 @@ cert_chain:
|
|
35
35
|
ORVCZpRuCPpmC8qmqxUnARDArzucjaclkxjLWvCVHeFa9UP7K3Nl9oTjJNv+7/jM
|
36
36
|
WZs4eecIcUc4tKdHxcAJ0MO/Dkqq7hGaiHpwKY76wQ1+8xAh
|
37
37
|
-----END CERTIFICATE-----
|
38
|
-
date:
|
38
|
+
date: 2020-12-20 00:00:00.000000000 Z
|
39
39
|
dependencies:
|
40
40
|
- !ruby/object:Gem::Dependency
|
41
41
|
name: ffi
|
@@ -86,61 +86,46 @@ 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
|
-
- spec/sys_cpu_bsd_spec.rb
|
99
|
-
- spec/sys_cpu_sunos_spec.rb
|
100
|
-
- spec/sys_cpu_hpux_spec.rb
|
101
|
-
- spec/sys_cpu_linux_spec.rb
|
102
|
-
- spec/sys_cpu_windows_spec.rb
|
103
|
-
- spec/sys_cpu_spec.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/linux/sys/cpu.rb
|
112
|
+
- lib/sys/unix/sys/cpu.rb
|
125
113
|
- lib/sys/windows/sys/cpu.rb
|
126
|
-
-
|
127
|
-
-
|
128
|
-
-
|
129
|
-
-
|
130
|
-
-
|
131
|
-
-
|
132
|
-
-
|
133
|
-
-
|
134
|
-
- doc/hpux.txt
|
135
|
-
- MANIFEST.rdoc
|
136
|
-
- README.rdoc
|
114
|
+
- spec/spec_helper.rb
|
115
|
+
- spec/sys_cpu_bsd_spec.rb
|
116
|
+
- spec/sys_cpu_hpux_spec.rb
|
117
|
+
- spec/sys_cpu_linux_spec.rb
|
118
|
+
- spec/sys_cpu_spec.rb
|
119
|
+
- spec/sys_cpu_sunos_spec.rb
|
120
|
+
- spec/sys_cpu_windows_spec.rb
|
121
|
+
- sys-cpu.gemspec
|
137
122
|
homepage: https://github.com/djberg96/sys-cpu
|
138
123
|
licenses:
|
139
124
|
- Apache-2.0
|
140
125
|
metadata:
|
141
126
|
homepage_uri: https://github.com/djberg96/sys-cpu
|
142
127
|
bug_tracker_uri: https://github.com/djberg96/sys-cpu/issues
|
143
|
-
changelog_uri: https://github.com/djberg96/sys-cpu/blob/ffi/CHANGES.
|
128
|
+
changelog_uri: https://github.com/djberg96/sys-cpu/blob/ffi/CHANGES.md
|
144
129
|
documentation_uri: https://github.com/djberg96/sys-cpu/wiki
|
145
130
|
source_code_uri: https://github.com/djberg96/sys-cpu
|
146
131
|
wiki_uri: https://github.com/djberg96/sys-cpu/wiki
|
@@ -159,15 +144,15 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
159
144
|
- !ruby/object:Gem::Version
|
160
145
|
version: '0'
|
161
146
|
requirements: []
|
162
|
-
rubygems_version: 3.
|
147
|
+
rubygems_version: 3.0.3
|
163
148
|
signing_key:
|
164
149
|
specification_version: 4
|
165
150
|
summary: A Ruby interface for providing CPU information
|
166
151
|
test_files:
|
167
152
|
- spec/spec_helper.rb
|
168
153
|
- spec/sys_cpu_bsd_spec.rb
|
169
|
-
- spec/sys_cpu_sunos_spec.rb
|
170
154
|
- spec/sys_cpu_hpux_spec.rb
|
171
155
|
- spec/sys_cpu_linux_spec.rb
|
156
|
+
- spec/sys_cpu_sunos_spec.rb
|
172
157
|
- spec/sys_cpu_windows_spec.rb
|
173
158
|
- spec/sys_cpu_spec.rb
|
metadata.gz.sig
CHANGED
Binary file
|