4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
# File 'lib/timmy/option_parser.rb', line 4
def parse
if command_start_at = ARGV.find_index { |arg| arg == '--' }
command = ARGV.slice!(command_start_at, ARGV.length - command_start_at)[1..-1]
elsif ARGV[0] && !ARGV[0].start_with?('-')
command = ARGV.slice!(0, ARGV.length)
else
command = nil
end
opts = {}
::OptionParser.new do |parser|
parser.banner = "\\e[1mtimmy\\e[0m -- time execution of commands and their stages based on console output\n\n\\e[33mUsage:\\e[0m\n\nPipe output from command:\n\n \\e[36mCOMMAND | timmy [OPTIONS]\\e[0m\n\nPass command as argument (records STDERR, gives more precise results):\n\n \\e[36mtimmy [OPTIONS --] COMMAND\\e[0m\n\nReplay previous session:\n\n \\e[36mcat LOGFILE | timmy [OPTIONS]\\e[0m\n"
parser.separator ""
parser.separator "\e[33mOptions:\e[0m"
parser.separator ""
parser.on("-q", "--quiet",
"Don't print times and targeted timers (default: false)")
parser.on("-p", "--precision NUM", Integer,
"Set precision used when printing time (default: 0)")
parser.on("-r", "--[no-]profile",
"Profile slowest targeted timers (default: false)")
parser.on("-x", "--replay-speed NUM", Float,
"Replay with given speed (default: instant)")
parser.separator ""
end.parse!(into: opts)
opts = opts.map { |key, value| [key.to_s.gsub('-', '_').to_sym, value] }.to_h
opts[:command] = command if command
opts
end
|