るりまサーチ

最速Rubyリファレンスマニュアル検索!
121件ヒット [1-100件を表示] (0.078秒)
トップページ > クエリ:-[x] > クエリ:on[x] > クエリ:summary[x]

別のキーワード

  1. _builtin -
  2. open-uri open
  3. irb/input-method new
  4. irb/input-method gets
  5. matrix -

検索結果

<< 1 2 > >>

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

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

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

OptionParser#summary_indent -> String (9273.0)

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

...pts = OptionParser.new do |opts|
opts.on_head("-i", "--init")
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, --update\n", " -h, --help\n"]
//}...

OptionParser#summary_width -> Integer (9273.0)

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

...rse"

opts = OptionParser.new do |opts|
opts.on_head("-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", " -u\n", " --update\n", " -h\n", " --help\n"]
//}...

OptionParser#summary_indent=(indent) (9173.0)

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

...OptionParser.new do |opts|
opts.on_head("-i", "--init")
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_ind...
...ent # => " "
opts.summarize
# => [" -i, --init\n", " -u, --update\n", " -h, --help\n"]
//}...

OptionParser#summary_width=(width) (9173.0)

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

...opts = OptionParser.new do |opts|
opts.on_head("-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 # => 8
opts.summary_width #...
...=> 8
opts.summarize
# => [" -i\n", " --init\n", " -u\n", " --update\n", " -h\n", " --help\n"]
//}...

絞り込み条件を変える

rubygems/commands/specification_command (6084.0)

指定された Gem パッケージの gemspec の情報を YAML 形式で表示するためのライブラリです。

...gem specification [GEMFILE] [options]
Options:
-
v, --version VERSION Specify version of gem to examine
-
-platform PLATFORM Specify the platform of gem to specification
-
-all Output specifications for all versions of...
...mote Options:
-
l, --local 操作をローカルに限定します
-
r, --remote 操作をリモートに限定します
-
b, --both ローカルとリモートの両方の操作を許可します
-
B, --bulk-threshol...
...
-
-backtrace バックトレースを表示します
-
-debug Ruby 自体のデバッグオプションを有効にします
Arguments:
GEMFILE gemspec を表示する Gem パッケージ名を指定します
Summary
:...

rubygems/commands/contents_command (6072.0)

インストールされている Gem パッケージに含まれているファイルリストを表示するためのライブラリです。

...contents GEMNAME [options]
Options:
-
v, --version VERSION 指定されたバージョンの Gem パッケージの内容を表示します
-
s, --spec-dir a,b,c 指定されたパス以下にある Gem パッケージを検索します
-
l, --[no-]lib-only...
...表示します
Common Options:
-
h, --help このコマンドのヘルプを表示します
-
V, --[no-]verbose 表示を詳細にします
-
q, --quiet 静かに実行します
-
-config-file FILE 指定...
...用します
-
-backtrace バックトレースを表示します
-
-debug Ruby 自体のデバッグオプションを有効にします
Arguments:
GEMNAME Gem パッケージの名前を指定します
Summary
:
...

rubygems/commands/environment_command (6030.0)

RubyGems の環境に関する情報を表示するためのライブラリです。

...gem environment [arg] [options]
Common Options:
-
h, --help このコマンドのヘルプを表示します
-
V, --[no-]verbose 表示を詳細にします
-
q, --quiet 静かに実行します
-
-config-file FILE...
...れた設定ファイルを使用します
-
-backtrace バックトレースを表示します
-
-debug Ruby 自体のデバッグオプションを有効にします
Arguments:
packageversion gem のバージョンを表示しま...
...表示します
version Gem パッケージのフォーマットのバージョンを表示します
remotesources Gem パッケージを検索するサーバを表示します
<omitted> 省略すると全て表示します
Summary
:
RubyGems の環境や...

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

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

...OptionParser.new do |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", " --update\n", " -h\n", " --help\n"]
//}...

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

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

...OptionParser.new do |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", " --update\n", " -h\n", " --help\n"]
//}...

絞り込み条件を変える

<< 1 2 > >>