408件ヒット
[1-100件を表示]
(0.167秒)
ライブラリ
- json (24)
- mkmf (72)
- openssl (120)
- optparse (24)
- rake (12)
-
rubygems
/ config _ file (120) - un (12)
-
webrick
/ httpresponse (12) -
webrick
/ server (12)
クラス
-
Gem
:: ConfigFile (120) -
JSON
:: State (24) -
OpenSSL
:: Config (96) -
OpenSSL
:: X509 :: ExtensionFactory (24) - OptionParser (24)
-
WEBrick
:: GenericServer (12) -
WEBrick
:: HTTPResponse (12)
モジュール
- Kernel (96)
キーワード
- [] (24)
-
add
_ value (12) -
arg
_ config (12) - backtrace (12)
- backtrace= (12)
-
bulk
_ threshold (12) -
bulk
_ threshold= (12) - config= (12)
-
config
_ file _ name (12) - configure (12)
-
default
_ argv= (12) -
dir
_ config (12) -
enable
_ config (24) - environment (12)
- file (12)
-
get
_ value (12) -
handle
_ arguments (12) - merge (12)
- mkmf (12)
- path (12)
- section (12)
- sections (12)
-
to
_ s (12) -
update
_ sources (12) -
update
_ sources= (12) - value (24)
-
with
_ config (24) - write (12)
検索結果
先頭5件
-
OpenSSL
:: X509 :: ExtensionFactory # config -> OpenSSL :: Config (24203.0) -
自身に設定されているコンフィグファイルオブジェクトを設定します。
自身に設定されているコンフィグファイルオブジェクトを設定します。 -
WEBrick
:: HTTPResponse # config -> Hash (24102.0) -
自身が生成される時に指定されたハッシュを返します。
自身が生成される時に指定されたハッシュを返します。 -
Kernel
# with _ config(config , default = nil) {|config , default| . . . } -> bool | String (15530.0) -
configure のオプションを検査します。
...
configure のオプションを検査します。
configure のオプションに --with-<config> が指定された場合は真を返しま
す。--without-<config> が指定された場合は偽を返します。どちらでもない場
合は default を返します。
これはデバッグ情......のカスタム定義を、追加するのに役立ちます。
@param config configure のオプションの名前を指定します。
@param default デフォルト値を返します。
例
require 'mkmf'
if with_config("debug")
$defs.push("-DOSSL_DEBUG") unless $defs.include? "-DOSSL... -
Kernel
# with _ config(config , default = nil) -> bool | String (15430.0) -
configure のオプションを検査します。
...
configure のオプションを検査します。
configure のオプションに --with-<config> が指定された場合は真を返しま
す。--without-<config> が指定された場合は偽を返します。どちらでもない場
合は default を返します。
これはデバッグ情......のカスタム定義を、追加するのに役立ちます。
@param config configure のオプションの名前を指定します。
@param default デフォルト値を返します。
例
require 'mkmf'
if with_config("debug")
$defs.push("-DOSSL_DEBUG") unless $defs.include? "-DOSSL... -
Gem
:: ConfigFile # backtrace=(backtrace) (15401.0) -
エラー発生時にバックトレースを出力するかどうか設定します。
...エラー発生時にバックトレースを出力するかどうか設定します。
@param backtrace 真を指定するとエラー発生時にバックトレースを出力するようになります。... -
Gem
:: ConfigFile # bulk _ threshold=(bulk _ threshold) (15401.0) -
一括ダウンロードの閾値を設定します。
...一括ダウンロードの閾値を設定します。
@param bulk_threshold 数値を指定します。... -
Gem
:: ConfigFile # update _ sources=(update _ sources) (15401.0) -
Gem::SourceInfoCache を毎回更新するかどうか設定します。
...Gem::SourceInfoCache を毎回更新するかどうか設定します。
@param update_sources 真を指定すると毎回 Gem::SourceInfoCache を更新します。... -
JSON
:: State # configure(options = {}) -> self (15325.0) -
与えられたハッシュで自身を設定します。
...いては JSON::State.new を参照してください。
@param options このオブジェクトの設定をするためのハッシュを指定します。
//emlist[例][ruby]{
require "json"
json_state = JSON::State.new(indent: "\t")
json_state.indent # => "\t"
JSON.generate({key1: "value1", ke......y2: "value2"}, json_state)
# => "{\t\"key1\":\"value1\",\t\"key2\":\"value2\"}"
json_state.configure(indent: " ")
json_state.indent # => " "
JSON.generate({key1: "value1", key2: "value2"}, json_state)
# => "{ \"key1\":\"value1\", \"key2\":\"value2\"}"
//}
@see JSON::State.new... -
Gem
:: ConfigFile # handle _ arguments(arg _ list) (15301.0) -
コマンドに渡された引数を処理します。
...コマンドに渡された引数を処理します。
@param arg_list コマンドに渡された引数の配列を指定します。...