るりまサーチ

最速Rubyリファレンスマニュアル検索!
4219件ヒット [101-200件を表示] (0.135秒)
トップページ > クエリ:a[x] > クエリ:Options[x]

別のキーワード

  1. _builtin to_a
  2. matrix to_a
  3. to_a
  4. dbm to_a
  5. argf.class to_a

キーワード

検索結果

<< < 1 2 3 4 ... > >>

CSV::DEFAULT_OPTIONS -> Hash (12201.0)

このオプションは呼び出し側で上書きしなかったときに使用するオプションです。

...るオプションです。

: :col_sep
","
: :row_sep
:auto
: :quote_char
'"'
: :field_size_limit
nil
: :converters
nil
: :unconverted_fields
nil
: :headers
false
: :return_headers
false
: :header_converters
nil
: :skip_blanks
false
: :force_quotes
false
: :skip_lines
nil...

Gem::DependencyInstaller::DEFAULT_OPTIONS -> Hash (12201.0)

自身を初期化する際に使用するデフォルトのオプションです。

...:env_shebang => false,
:domain => :both, # HACK dup
:force => false,
:format_executable => false, # HACK dup
:ignore_dependencies => false,
:security_policy => nil, # HACK NoSecurity requires OpenSSL. AlmostNo? Low?
:wrappers...

OptionParser::Arguable#options {|opt| ... } -> object | nil (12114.0)

自身をパースするための OptionParser オブジェクトを返します。 初回呼び出し時に自動的に生成されます。 この OptionParser#default_argv には self がセットされています。

...身をパースするための OptionParser オブジェクトを返します。
初回呼び出し時に自動的に生成されます。
この OptionParser#default_argv には self がセットされています。

ブロックを与えた場合は、OptionParser を引数としてブロック...
...ロックの実行途中で OptionParser::ParseError
が発生した場合は、全て rescue し、エラーメッセージを出力し、
nil を返します。

//emlist[][ruby]{
require 'optparse'

o = nil
A
RGV.options{|opt|
opt.on('-a'){ o = true }
opt.parse!
}
p o #...

OptionParser::Arguable#options=(opt) (12113.0)

自身をパースするための OptionParser オブジェクトをセットします。

...パースするための OptionParser オブジェクトをセットします。

@param opt 自身をパースする OptionParser 、あるいは nil か false を指定します。
nil か false である場合、自身の options= メソッドと options メソッドを
unde...

OptionParser::Arguable#parse! -> [String] (12112.0)

自身を破壊的にパースし、パースされずに残った引数を文字列の配列として返します。 OptionParser#parse! を参照して下さい。

...を文字列の配列として返します。
OptionParser#parse! を参照して下さい。

@raise OptionParser::ParseError 自身のパースに失敗した場合、発生します。
実際は OptionParser::ParseError のサブク...
...ラスの例外になります。

//emlist[][ruby]{
require 'optparse'

o = nil
A
RGV.options.on('-a'){ o = true }
A
RGV.parse!
p o #=> true
//}...

絞り込み条件を変える

Gem::InstallUpdateOptions#install_update_defaults_str -> String (12100.0)

Gem コマンドの install サブコマンドに渡されるデフォルトのオプションを返します。

...Gem コマンドの install サブコマンドに渡されるデフォルトのオプションを返します。

デフォルトのオプションは以下の通りです。
--rdoc --no-force --no-test --wrappers...

Gem::LocalRemoteOptions#local? -> bool (12100.0)

ローカルの情報を取得する場合は真を返します。 そうでない場合は偽を返します。

ローカルの情報を取得する場合は真を返します。
そうでない場合は偽を返します。

rubygems/commands/server_command (12048.0)

ローカルにインストールされている Gem パッケージとそのドキュメントを HTTP サーバに 載せて公開するためのライブラリです。

...イブラリです。

Usage: gem server [options]
Options
:
-p, --port=PORT port to listen on
-d, --dir=GEMDIR directory from which to serve gems
--[no-]daemon run as a daemon
Common Options:
-h, --help...
...acktrace バックトレースを表示します
--debug Ruby 自体のデバッグオプションを有効にします
Summary:
Documentation and gem repository HTTP server
Description:
The server command starts up a web server tha...
...installed gems and can operate as a server for installation of gems on other
machines.

The cache files for installed gems must exist to use the server as a source
for gem installation.

To install gems from a running server, use `gem install GEMNAME --sourc...

rubygems/commands/generate_index_command (12042.0)

ある Gem サーバに対するインデックスを作成するためのライブラリです。

...るインデックスを作成するためのライブラリです。

Usage: gem generate_index [options]
Options
:
-d, --directory=DIRNAME repository base dir containing gems subdir
Common Options:
-h, --help このコマンドのヘルプを表...
...backtrace バックトレースを表示します
--debug Ruby 自体のデバッグオプションを有効にします
Summary:
Generates the index files for a gem server directory
Description:
The generate_index command creates a...
...exes for serving gems
statically. The command expects a 'gems' directory under the path given to
the --directory option. When done, it will generate a set of files like
this:

gems/ # .gem files you want to
index
quic...
<< < 1 2 3 4 ... > >>