るりまサーチ

最速Rubyリファレンスマニュアル検索!
24件ヒット [1-24件を表示] (0.030秒)

別のキーワード

  1. optionparser summary_indent=
  2. optparse summary_indent=
  3. optionparser summary_indent
  4. optparse summary_indent
  5. optionparser summary_width

ライブラリ

クラス

検索結果

OptionParser#summary_indent=(indent) (18125.0)

サマリを表示する時のインデントを文字列で指定します。

...--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, --update...

OptionParser#summary_indent -> String (25.0)

サマリを表示する時のインデントを文字列で返します。

...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, --update\n", "...