Sha256: ae8609fecca96136db187c4a86071db7c4b5796ca3f00df23c3d150e9dfe6bee

Contents?: true

Size: 863 Bytes

Versions: 1

Compression:

Stored size: 863 Bytes

Contents

#!/usr/bin/env ruby
require 'optparse'
require 'stackprof-webnav'
require 'rack'

options = {
  :port => 9292
}

parser = OptionParser.new(ARGV) do |o|
  o.banner = "Usage: stackprof-webnav [-f localfile.dump]|[-u http://path/to/file.dump]|[-b http://path/to/s3/bucket/listing] [-p NUMBER]"
  o.on('-f [LOCALFILE]', 'Local file path to dump') {|filepath| options[:filepath] = filepath }
  o.on('-u [URI]', 'URI path to dump') {|uri| options[:uri] = uri }
  o.on('-b [URI]', 'URI path to Amazon S3 bucket listing') {|bucket| options[:bucket] = bucket}
  o.on('-p [PORT]', 'Server port') {|port| options[:port] = port }
end

parser.parse!
parser.abort(parser.help) unless [:filepath, :uri, :bucket].any? {|key| options.key?(key)}

server = StackProf::Webnav::Server
server.cmd_options = options

Rack::Handler.get('webrick').run server.new, :Port => options[:port]

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
stackprof-webnav-0.1.0 bin/stackprof-webnav