るりまサーチ

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

別のキーワード

  1. _builtin sum
  2. enumerable sum
  3. array sum
  4. string sum
  5. sum _builtin

ライブラリ

クラス

キーワード

検索結果

<< 1 2 > >>

Gem::Command#summary -> String (24202.0)

コマンドの短い説明を返します。

コマンドの短い説明を返します。

Gem::Specification#summary -> String (24202.0)

この Gem パッケージの短い説明を返します。

この Gem パッケージの短い説明を返します。

Gem::Specification#summary=(summary) (12409.0)

この Gem パッケージの短い説明をセットします。

...この Gem パッケージの短い説明をセットします。

@param summary 短い説明を指定します。...

OptionParser#summary_indent -> String (12220.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\n", "...

OptionParser#summary_indent=(indent) (12220.0)

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

...pdate")
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"...

絞り込み条件を変える

OptionParser#summary_width -> Integer (12220.0)

サマリを表示するときの幅を整数で返します。

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

OptionParser#summary_width=(width) (12220.0)

サマリを表示するときの幅を整数で指定します。

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

Gem::Command#summary=(description) (12202.0)

コマンドの短い説明をセットします。

コマンドの短い説明をセットします。

@param description コマンドの短い説明を指定します。

OptionParser#summarize(to = [], width = self.summary_width, max = width - 1, indent= self.summary_indent) -> () (6505.0)

サマリを指定された to へと加えていきます。

...|opts|
opts.on_head("-i", "--init")
opts.on("-u", "--update")
opts.on_tail("-h", "--help")
end

opts.summarize
# => [" -i, --init\n", " -u, --update\n", " -h, --help\n"]
opts.summarize(["description\n"], 10, 8, " ")
# => ["description\n", " -i\n", " --init\n", " -u\n", "...

OptionParser#summarize(to = [], width = self.summary_width, max = width - 1, indent= self.summary_indent) {|line| ... } -> () (6505.0)

サマリを指定された to へと加えていきます。

...|opts|
opts.on_head("-i", "--init")
opts.on("-u", "--update")
opts.on_tail("-h", "--help")
end

opts.summarize
# => [" -i, --init\n", " -u, --update\n", " -h, --help\n"]
opts.summarize(["description\n"], 10, 8, " ")
# => ["description\n", " -i\n", " --init\n", " -u\n", "...

絞り込み条件を変える

<< 1 2 > >>