114件ヒット
[101-114件を表示]
(0.021秒)
別のキーワード
クラス
- Array (18)
- OptionParser (72)
モジュール
- Enumerable (24)
キーワード
- summarize (24)
-
summary
_ indent (12) -
summary
_ indent= (12) -
summary
_ width (12) -
summary
_ width= (12)
検索結果
-
OptionParser
# summary _ width -> Integer (6118.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", "... -
OptionParser
# summary _ width=(width) (6118.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"...