510件ヒット
[1-100件を表示]
(0.081秒)
ライブラリ
- drb (10)
- json (20)
- mkmf (60)
- openssl (120)
- optparse (20)
- rake (10)
-
rubygems
/ config _ file (220) - un (10)
-
webrick
/ cgi (10) -
webrick
/ httpresponse (10) -
webrick
/ server (20)
クラス
-
DRb
:: DRbServer (10) -
Gem
:: ConfigFile (220) -
JSON
:: State (20) -
OpenSSL
:: Config (100) -
OpenSSL
:: X509 :: ExtensionFactory (20) - OptionParser (20)
-
WEBrick
:: CGI (10) -
WEBrick
:: GenericServer (20) -
WEBrick
:: HTTPResponse (10)
モジュール
- Kernel (80)
キーワード
- [] (30)
- []= (20)
-
add
_ value (10) -
arg
_ config (10) - args (10)
- backtrace (10)
- backtrace= (10)
- benchmark (10)
- benchmark= (10)
-
bulk
_ threshold (10) -
bulk
_ threshold= (10) - config= (10)
-
config
_ file _ name (10) - configure (10)
-
default
_ argv= (10) -
dir
_ config (10) - each (20)
-
enable
_ config (20) - environment (10)
- file (10)
-
get
_ value (10) -
handle
_ arguments (10) - hash (10)
-
load
_ file (10) - merge (10)
- mkmf (10)
- path (10)
- path= (10)
-
really
_ verbose (10) - section (10)
- sections (10)
-
to
_ s (10) -
update
_ sources (10) -
update
_ sources= (10) - value (20)
- verbose (10)
- verbose= (10)
-
with
_ config (20) - write (10)
検索結果
先頭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" です。... -
OpenSSL
:: X509 :: ExtensionFactory # config=(config) (6239.0) -
自身にコンフィグファイルオブジェクトを設定します。
...自身にコンフィグファイルオブジェクトを設定します。
例
require 'openssl'
factory.config = OpenSSL::Config.load(OpenSSL::Config::DEFAULT_CONFIG_FILE)
@param config 設定ファイル(OpenSSL::Config オブジェクト)...