mmtop 0.9.2 → 0.9.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.
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 'mysql2'
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
File without changes
File without changes
File without changes
@@ -1,4 +1,4 @@
1
- require 'lib/string_colorize'
1
+ require 'mmtop/string_colorize'
2
2
 
3
3
  module MMTop
4
4
  class TermPrinter
data/lib/mmtop.rb ADDED
@@ -0,0 +1,9 @@
1
+ require 'mysql2'
2
+ require 'mmtop/mmconfig'
3
+ require 'mmtop/host'
4
+ require 'mmtop/process'
5
+ require 'mmtop/term_printer'
6
+ require 'mmtop/term_input'
7
+ require 'mmtop/command'
8
+ require 'mmtop/pid'
9
+ require 'mmtop/filter'
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: 63
4
+ hash: 61
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 9
9
- - 2
10
- version: 0.9.2
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