24件ヒット
[1-24件を表示]
(0.319秒)
ライブラリ
- optparse (24)
クラス
- OptionParser (24)
検索結果
-
OptionParser
# summary _ indent=(indent) (24225.0) -
サマリを表示する時のインデントを文字列で指定します。
....on("-u", "--update")
opts.on_tail("-h", "--help")
end
opts.summary_indent # => " "
opts.summarize
# => [" -i, --init\n", " -u, --update\n", " -h, --help\n"]
opts.summary_indent = " " # => " "
opts.summary_indent # => " "
opts.summarize
# => [" -i, --init\n", " -... -
OptionParser
# summary _ indent -> String (18125.0) -
サマリを表示する時のインデントを文字列で返します。
...opts.on("-u", "--update")
opts.on_tail("-h", "--help")
end
opts.summary_indent # => " "
opts.summarize
# => [" -i, --init\n", " -u, --update\n", " -h, --help\n"]
opts.summary_indent = " "
opts.summary_indent # => " "
opts.summarize
# => [" -i, --init\n", " -u, --u...