我正在学习使用 Ruby 的 OptionParser 类。如何提高解析器错误消息的质量?下面是一个带有强制选项的标志示例,该选项必须是hour
、day
、week
或之一month
。
opt_parser = OptionParser.new do |opts|
opts.banner = "Usage: #{$0} [options] username"
times = [:hour, :day, :week, :month]
opts.on('-t', '--time=TIME', times,
'Show messages from the last TIME (defaults to weeks)', "Avaliable options are (#{times.join(', ')})") do |time|
o.time = time
end
end
以下是一些示例输出。
$ ./script -t
./scraper.rb:195:in `main': missing argument: -t (OptionParser::MissingArgument)
from ./scraper.rb:210:in `<main>'
$ ./script -t not_a_value
./scraper.rb:195:in `main': invalid argument: -t not_a_value (OptionParser::InvalidArgument)
from ./scraper.rb:210:in `<main>'
我希望错误提及可接受的值,例如invalid option for -t 'not_a_value', valid options are hour, day, week, month