usagewatch 0.0.6 → 0.0.7pre
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +4 -0
- data/README.md +2 -0
- data/lib/usagewatch.rb +2 -2
- data/lib/usagewatch/version.rb +1 -1
- data/usagewatch.gemspec +1 -1
- metadata +6 -6
data/CHANGELOG
CHANGED
@@ -1,5 +1,9 @@
|
|
1
1
|
License: (MIT) Copyright (C) 2013 usagewatch Author Phil Chen, contributor Ruben Espinosa.
|
2
2
|
|
3
|
+
0.0.7pre July 25 2013
|
4
|
+
====
|
5
|
+
* Added referring people to usagewatch_ext for OS support other then Linux in the OS detection
|
6
|
+
|
3
7
|
0.0.6 July 23 2013
|
4
8
|
====
|
5
9
|
* Removed Mac OS methods which will become a different Gem
|
data/README.md
CHANGED
@@ -7,6 +7,8 @@ License: (MIT) Copyright (C) 2013 usagewatch Author Phil Chen, contributor Ruben
|
|
7
7
|
A Ruby Class with methods to find usage statistics on a Linux server such as CPU, Disk, TCP/UDP Connections, Load,
|
8
8
|
Bandwidth, Disk I/O, and Memory
|
9
9
|
|
10
|
+
* If you are using a Operating System that is not Linux, please try out the Gem usagewatch_ext by Ruben Espinosa
|
11
|
+
|
10
12
|
## Getting Started
|
11
13
|
|
12
14
|
gem install usagewatch
|
data/lib/usagewatch.rb
CHANGED
@@ -1,9 +1,9 @@
|
|
1
|
-
#
|
1
|
+
#License: (MIT), Copyright (C) 2013 Author Phil Chen, contributor Ruben Espinosa
|
2
2
|
|
3
3
|
require "usagewatch/version"
|
4
4
|
|
5
5
|
os = RUBY_PLATFORM
|
6
|
-
text = "Unsupported OS!"
|
6
|
+
text = "Unsupported OS! If you are using a Operating System that is not Linux, please try out the Gem usagewatch_ext by Ruben Espinosa"
|
7
7
|
|
8
8
|
if os.include? "linux"
|
9
9
|
require "usagewatch/linux"
|
data/lib/usagewatch/version.rb
CHANGED
data/usagewatch.gemspec
CHANGED
@@ -8,7 +8,7 @@ Gem::Specification.new do |spec|
|
|
8
8
|
spec.name = "usagewatch"
|
9
9
|
spec.version = Usagewatch::VERSION
|
10
10
|
spec.authors = ["Phil Chen, Ruben Espinosa"]
|
11
|
-
spec.email = ["nethacker@gmail.com
|
11
|
+
spec.email = ["nethacker@gmail.com"]
|
12
12
|
spec.description = %q{A Ruby Gem with methods to find usage statistics on a Linux server such as CPU, Disk, TCP/UDP Connections, Load, Bandwidth, Disk I/O, and Memory}
|
13
13
|
spec.summary = %q{Statistics on a Linux server}
|
14
14
|
spec.homepage = "https://github.com/nethacker/usagewatch"
|
metadata
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: usagewatch
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
5
|
-
prerelease:
|
4
|
+
version: 0.0.7pre
|
5
|
+
prerelease: 5
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Phil Chen, Ruben Espinosa
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-07-
|
12
|
+
date: 2013-07-25 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: bundler
|
@@ -46,7 +46,7 @@ dependencies:
|
|
46
46
|
description: A Ruby Gem with methods to find usage statistics on a Linux server such
|
47
47
|
as CPU, Disk, TCP/UDP Connections, Load, Bandwidth, Disk I/O, and Memory
|
48
48
|
email:
|
49
|
-
- nethacker@gmail.com
|
49
|
+
- nethacker@gmail.com
|
50
50
|
executables: []
|
51
51
|
extensions: []
|
52
52
|
extra_rdoc_files: []
|
@@ -82,9 +82,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
82
82
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
83
83
|
none: false
|
84
84
|
requirements:
|
85
|
-
- - ! '
|
85
|
+
- - ! '>'
|
86
86
|
- !ruby/object:Gem::Version
|
87
|
-
version:
|
87
|
+
version: 1.3.1
|
88
88
|
requirements: []
|
89
89
|
rubyforge_project:
|
90
90
|
rubygems_version: 1.8.23
|