るりまサーチ

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

別のキーワード

  1. io popen
  2. io pipe
  3. io each
  4. io each_line
  5. io readlines

検索結果

<< 1 2 > >>

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

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

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

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

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

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

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

OptionParser#summary_indent -> String (12119.0)

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

...opts = 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...

OptionParser#summary_indent=(indent) (12119.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...

OptionParser#summary_width -> Integer (12119.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...

絞り込み条件を変える

OptionParser#summary_width=(width) (12119.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 #...

rubygems/commands/specification_command (12006.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...
...the gem
Local/Remote Options:
-l, --local 操作をローカルに限定します
-r, --remote 操作をリモートに限定します
-b, --both ローカルとリモートの両方の...
...操作を許可します
-B, --bulk-threshold COUNT Threshold for switching to bulk
synchronization (default 1000)
--source URL Gem パッケージのリモートリポジトリの URL を指定します
--[no-]ht...

rubygems/specification (12006.0)

Gem パッケージのメタデータを扱うためのライブラリです。

...ージのメタデータを扱うためのライブラリです。

通常 gemspec ファイルや Rakefile でメタデータを定義します。

例:

spec = Gem::Specification.new do |s|
s.name = 'rfoo'
s.version = '1.0'
s.summary = 'Example gem specification'
...
end...

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

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

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

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

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

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

...arse"

opts = 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", "...

絞り込み条件を変える

<< 1 2 > >>