mmtop 0.9.2 → 0.9.3
Sign up to get free protection for your applications and to get access to all the features.
- data/bin/mmtop +1 -14
- data/lib/{command.rb → mmtop/command.rb} +0 -0
- data/lib/{commands → mmtop/commands}/basic.rb +0 -0
- data/lib/{commands → mmtop/commands}/filters.rb +0 -0
- data/lib/{commands → mmtop/commands}/kill.rb +0 -0
- data/lib/{filter.rb → mmtop/filter.rb} +0 -0
- data/lib/{filters → mmtop/filters}/basic.rb +0 -0
- data/lib/{filters → mmtop/filters}/map_topology.rb +0 -0
- data/lib/{filters → mmtop/filters}/reverse_lookup.rb +0 -0
- data/lib/{host.rb → mmtop/host.rb} +0 -0
- data/lib/{mmconfig.rb → mmtop/mmconfig.rb} +0 -0
- data/lib/{pid.rb → mmtop/pid.rb} +0 -0
- data/lib/{process.rb → mmtop/process.rb} +0 -0
- data/lib/{string_colorize.rb → mmtop/string_colorize.rb} +0 -0
- data/lib/{term_input.rb → mmtop/term_input.rb} +0 -0
- data/lib/{term_printer.rb → mmtop/term_printer.rb} +1 -1
- data/lib/mmtop.rb +9 -0
- metadata +19 -18
data/bin/mmtop
CHANGED
@@ -1,23 +1,10 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
|
-
#
|
3
|
-
|
4
2
|
require 'rubygems'
|
5
|
-
require 'bundler'
|
6
|
-
Bundler.setup
|
7
3
|
|
8
4
|
require 'pp'
|
9
5
|
require 'Getopt/Declare'
|
10
6
|
|
11
|
-
require '
|
12
|
-
require 'lib/mmconfig'
|
13
|
-
require 'lib/host'
|
14
|
-
require 'lib/process'
|
15
|
-
require 'lib/term_printer'
|
16
|
-
require 'lib/term_input'
|
17
|
-
require 'lib/command'
|
18
|
-
require 'lib/pid'
|
19
|
-
require 'lib/filter'
|
20
|
-
|
7
|
+
require 'mmtop'
|
21
8
|
|
22
9
|
spec = <<-EOL
|
23
10
|
-c, --config <FILE> Where to find mmtop_config
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
data/lib/{pid.rb → mmtop/pid.rb}
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
data/lib/mmtop.rb
ADDED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mmtop
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 61
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 9
|
9
|
-
-
|
10
|
-
version: 0.9.
|
9
|
+
- 3
|
10
|
+
version: 0.9.3
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Ben Osheroff
|
@@ -70,21 +70,22 @@ extensions: []
|
|
70
70
|
extra_rdoc_files: []
|
71
71
|
|
72
72
|
files:
|
73
|
-
- lib/pid.rb
|
74
|
-
- lib/mmconfig.rb
|
75
|
-
- lib/filters/basic.rb
|
76
|
-
- lib/filters/reverse_lookup.rb
|
77
|
-
- lib/filters/map_topology.rb
|
78
|
-
- lib/command.rb
|
79
|
-
- lib/string_colorize.rb
|
80
|
-
- lib/process.rb
|
81
|
-
- lib/host.rb
|
82
|
-
- lib/term_input.rb
|
83
|
-
- lib/term_printer.rb
|
84
|
-
- lib/commands/filters.rb
|
85
|
-
- lib/commands/kill.rb
|
86
|
-
- lib/commands/basic.rb
|
87
|
-
- lib/filter.rb
|
73
|
+
- lib/mmtop/pid.rb
|
74
|
+
- lib/mmtop/mmconfig.rb
|
75
|
+
- lib/mmtop/filters/basic.rb
|
76
|
+
- lib/mmtop/filters/reverse_lookup.rb
|
77
|
+
- lib/mmtop/filters/map_topology.rb
|
78
|
+
- lib/mmtop/command.rb
|
79
|
+
- lib/mmtop/string_colorize.rb
|
80
|
+
- lib/mmtop/process.rb
|
81
|
+
- lib/mmtop/host.rb
|
82
|
+
- lib/mmtop/term_input.rb
|
83
|
+
- lib/mmtop/term_printer.rb
|
84
|
+
- lib/mmtop/commands/filters.rb
|
85
|
+
- lib/mmtop/commands/kill.rb
|
86
|
+
- lib/mmtop/commands/basic.rb
|
87
|
+
- lib/mmtop/filter.rb
|
88
|
+
- lib/mmtop.rb
|
88
89
|
- bin/mmtop
|
89
90
|
has_rdoc: true
|
90
91
|
homepage: http://github.com/osheroff/mmtop
|