612件ヒット
[1-100件を表示]
(0.076秒)
ライブラリ
- drb (12)
- json (24)
- mkmf (72)
- openssl (144)
- optparse (24)
- rake (12)
-
rubygems
/ config _ file (264) - un (12)
-
webrick
/ cgi (12) -
webrick
/ httpresponse (12) -
webrick
/ server (24)
クラス
-
DRb
:: DRbServer (12) -
Gem
:: ConfigFile (264) -
JSON
:: State (24) -
OpenSSL
:: Config (120) -
OpenSSL
:: X509 :: ExtensionFactory (24) - OptionParser (24)
-
WEBrick
:: CGI (12) -
WEBrick
:: GenericServer (24) -
WEBrick
:: HTTPResponse (12)
モジュール
- Kernel (96)
キーワード
- [] (36)
- []= (24)
-
add
_ value (12) -
arg
_ config (12) - args (12)
- backtrace (12)
- backtrace= (12)
- benchmark (12)
- benchmark= (12)
-
bulk
_ threshold (12) -
bulk
_ threshold= (12) - config= (12)
-
config
_ file _ name (12) - configure (12)
-
default
_ argv= (12) -
dir
_ config (12) - each (24)
-
enable
_ config (24) - environment (12)
- file (12)
-
get
_ value (12) -
handle
_ arguments (12) - hash (12)
-
load
_ file (12) - merge (12)
- mkmf (12)
- path (12)
- path= (12)
-
really
_ verbose (12) - section (12)
- sections (12)
-
to
_ s (12) -
update
_ sources (12) -
update
_ sources= (12) - value (24)
- verbose (12)
- verbose= (12)
-
with
_ config (24) - write (12)
検索結果
先頭5件
-
OpenSSL
:: X509 :: ExtensionFactory # config -> OpenSSL :: Config (18203.0) -
自身に設定されているコンフィグファイルオブジェクトを設定します。
自身に設定されているコンフィグファイルオブジェクトを設定します。 -
DRb
:: DRbServer # config -> Hash (18102.0) -
サーバの設定を返します。
サーバの設定を返します。
@see DRb::DRbServer.new, DRb.#start_service -
WEBrick
:: CGI # config -> Hash (18102.0) -
自身の設定を保持したハッシュを返します。
自身の設定を保持したハッシュを返します。
@see WEBrick::CGI.new -
WEBrick
:: GenericServer # config -> Hash (18102.0) -
サーバの設定を保存したハッシュを返します。
サーバの設定を保存したハッシュを返します。 -
WEBrick
:: HTTPResponse # config -> Hash (18102.0) -
自身が生成される時に指定されたハッシュを返します。
自身が生成される時に指定されたハッシュを返します。 -
Gem
:: ConfigFile # config _ file _ name -> String (9102.0) -
設定ファイルの名前を返します。
設定ファイルの名前を返します。 -
Kernel
# enable _ config(config , default) {|config , default| . . . } -> bool | String (6330.0) -
configure のオプションを検査します。
...
configure のオプションを検査します。
configure のオプションに --enable-<config> が指定された場合は、真を返し
ます。--disable-<config> が指定された場合は。偽を返します。どちらでもな
い場合は default を返します。
これはデバ......カスタム定義を、追加するのに役立ちます。
@param config configure のオプションの名前を指定します。
@param default デフォルト値を返します。
例
require 'mkmf'
if enable_config("debug")
$defs.push("-DOSSL_DEBUG") unless $defs.include? "-DOSSL_... -
Kernel
# with _ config(config , default = nil) {|config , default| . . . } -> bool | String (6330.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
# arg _ config(config , default) { . . . } -> object | String | true | nil (6249.0) -
configure オプション --config の値を返します。
...
configure オプション --config の値を返します。
@param config オプションを文字列で指定します。
@param default 引数 config で指定したオプションのデフォルト値を指定します。
@return オプションが指定されてた場合は true を、指定......ンに引数が指定されていた場合は指定した文字列を返します。
例えば extconf.rb で arg_config メソッドを使う場合、
$ ruby extconf.rb --foo --bar=baz
と実行したとき、arg_config("--foo") の値は true、
arg_config("--bar") の値は "baz" です。...