612件ヒット
[101-200件を表示]
(0.090秒)
ライブラリ
- 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件
- Kernel
# arg _ config(config , default) { . . . } -> object | String | true | nil - OpenSSL
:: X509 :: ExtensionFactory # config=(config) - Kernel
# enable _ config(config , default) -> bool | String - Kernel
# with _ config(config , default = nil) -> bool | String - Kernel
# dir _ config(target , idefault = nil , ldefault = nil) -> [String , String]
-
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 オブジェクト)... -
Kernel
# enable _ config(config , default) -> bool | String (6230.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) -> bool | String (6230.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
# dir _ config(target , idefault = nil , ldefault = nil) -> [String , String] (6108.0) -
configure オプション --with-TARGET-dir, --with-TARGET-include, --with-TARGET-lib をユーザが extconf.rb に指定できるようにします。
...
configure オプション
--with-TARGET-dir,
--with-TARGET-include,
--with-TARGET-lib
をユーザが extconf.rb に指定できるようにします。
--with-TARGET-dir オプションは
システム標準ではない、
ヘッダファイルやライブラリがあるディレクトリをま......ldefault システム標準ではないライブラリのディレクトリのデフォルト値を指定します。
例
require 'mkmf'
# xml2 の configure オプションを指定できるようにします。
xml2_dirs = dir_config('xml2', '/opt/local/include/libxml2', '/opt/local/lib')... -
JSON
:: State # configure(options = {}) -> self (6101.0) -
与えられたハッシュで自身を設定します。
...tate.indent # => "\t"
JSON.generate({key1: "value1", key2: "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\":\... -
OpenSSL
:: Config # each {|section , key , value| . . . } -> self (3019.0) -
オブジェクトに含まれる全ての設定情報を順にブロックに渡し 呼び出します。
...ーを表す文字列、キーに
割り当てられた値の文字列、の3つです。
require 'openssl'
conf = OpenSSL::Config.load(OpenSSL::Config::DEFAULT_CONFIG_FILE)
conf.each{|section, key, value| p [section, key, value]}
# => ["req_distinguished_name", "countryName", "Country Name... -
Gem
:: ConfigFile # [](key) -> object (3001.0) -
引数で与えられたキーに対応する設定情報を返します。
引数で与えられたキーに対応する設定情報を返します。
@param key 設定情報を取得するために使用するキーを指定します。 -
Gem
:: ConfigFile # []=(key , value) (3001.0) -
引数で与えられたキーに対応する設定情報を自身に保存します。
引数で与えられたキーに対応する設定情報を自身に保存します。
@param key 設定情報をセットするために使用するキーを指定します。
@param value 設定情報の値を指定します。