Sha256: 7d4bb39abedd99e0ba142b164478fc994d3f67fb904eac6225d4c9d72e1e635d
Contents?: true
Size: 477 Bytes
Versions: 18
Compression:
Stored size: 477 Bytes
Contents
module PerfMonger module Command class StatOption < RecordOption attr_reader :json private def initialize super() @parser.banner = <<EOS Usage: perfmonger stat [options] -- <command> Run a command and gather performance information during its execution. Options: EOS @logfile = './perfmonger.pgr' @json = false @parser.on('--json', "Output summary in JSON") do @json = true end end end end # module Command end # module PerfMonger
Version data entries
18 entries across 18 versions & 1 rubygems