24件ヒット
[1-24件を表示]
(0.015秒)
別のキーワード
ライブラリ
- optparse (24)
クラス
- OptionParser (24)
検索結果
-
OptionParser
# summary _ width=(width) (18124.0) -
サマリを表示するときの幅を整数で指定します。
..."--init")
opts.on("-u", "--update")
opts.on_tail("-h", "--help")
end
opts.summary_width # => 32
opts.summarize
# => [" -i, --init\n", " -u, --update\n", " -h, --help\n"]
opts.summary_width = 8 # => 8
opts.summary_width # => 8
opts.summarize
# => [" -i\n", " --init\n"... -
OptionParser
# summary _ width -> Integer (24.0) -
サマリを表示するときの幅を整数で返します。
...-i", "--init")
opts.on("-u", "--update")
opts.on_tail("-h", "--help")
end
opts.summary_width # => 32
opts.summarize
# => [" -i, --init\n", " -u, --update\n", " -h, --help\n"]
opts.summary_width = 8
opts.summary_width # =>8
opts.summarize
# => [" -i\n", " --init\n", "...