vmstator 2.0.2 → 2.0.3

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: b593666503181d0bb66d1c68a4834d62fbff3bd5
4
- data.tar.gz: 297d3af6c94cde231888477dff7c1407c5f8d759
3
+ metadata.gz: 777292bcdd7115c86a78c49ed1e7e7608e02e05f
4
+ data.tar.gz: 6c5ccfa8b5f3ee79ef39e7c7a7cee59e2dfb5f61
5
5
  SHA512:
6
- metadata.gz: 582a2eba336e5ca0dca10392306f99c43566dbbef54a360daeba8f8a14c8a1d26c1d467613207811dc5ea6a795183a2a59ec73017fbee676fb03984288b9dbe4
7
- data.tar.gz: 21d844a2b549883cb605469f161c02a377ae433ebeb53b78e5d8840fa6b6a1a32c7f1b0620ed47ba974359b035c5a95904518c87294da95325ea992d54917703
6
+ metadata.gz: aed4af6e3b2e133135e7b171a556ac9f5b3bc27015eaf549c1f37dd973e017a5507f1bbffdd9ebd739d539f7ede82a5855607a4661b3b735e7f57a6dfb183d92
7
+ data.tar.gz: 16c5ea2d12601a64cae24a80284109f1bf82472cf959243e47817b31027b03ba893ab93d9b5ed4c94905030cdb67518c38a23fed593ad860c970df5881cb5c2e
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- vmstator (2.0.2)
4
+ vmstator (2.0.3)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/README.md CHANGED
@@ -6,7 +6,7 @@ Vmstator is a Ruby API for [vmstat](https://en.wikipedia.org/wiki/Vmstat). It pr
6
6
 
7
7
  This gem is still in development, but has more or less working code! :)
8
8
 
9
- ![screenshot](http://imgur.com/a/eMpO2 "Screen Shot")
9
+ ![screenshot](http://i.imgur.com/YvQXevs.png "Screen Shot")
10
10
 
11
11
  ## Installation
12
12
 
@@ -1,3 +1,3 @@
1
1
  module Vmstator
2
- VERSION = "2.0.2"
2
+ VERSION = "2.0.3"
3
3
  end
data/lib/vmstator.rb CHANGED
@@ -10,7 +10,6 @@ require "vmstator/disk_statistics"
10
10
  require "vmstator/disk_summary"
11
11
  require "vmstator/errors"
12
12
  require "vmstator/event_counter_statistics"
13
- require "vmstator/forks"
14
13
  require "vmstator/slab_info"
15
14
  require "vmstator/version"
16
15
 
Binary file
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vmstator
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.2
4
+ version: 2.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kent 'picat' Gruber
@@ -79,7 +79,6 @@ files:
79
79
  - lib/vmstator/disk_summary.rb
80
80
  - lib/vmstator/errors.rb
81
81
  - lib/vmstator/event_counter_statistics.rb
82
- - lib/vmstator/forks.rb
83
82
  - lib/vmstator/memory.rb
84
83
  - lib/vmstator/parser.rb
85
84
  - lib/vmstator/slab_info.rb
@@ -89,6 +88,8 @@ files:
89
88
  - pkg/vmstator-1.0.0.gem
90
89
  - pkg/vmstator-1.0.1.gem
91
90
  - pkg/vmstator-2.0.0.gem
91
+ - pkg/vmstator-2.0.1.gem
92
+ - pkg/vmstator-2.0.2.gem
92
93
  - vmstator.gemspec
93
94
  homepage: https://github.com/picatz/Vmstator
94
95
  licenses:
@@ -1,9 +0,0 @@
1
- module Vmstator
2
-
3
- class Forks
4
- def initialize
5
- puts "forks"
6
- end
7
- end
8
-
9
- end