867件ヒット
[1-100件を表示]
(0.067秒)
種類
ライブラリ
- ビルトイン (24)
- drb (12)
- json (24)
- openssl (216)
- optparse (24)
- rbconfig (36)
- rubygems (12)
-
rubygems
/ config _ file (84) -
rubygems
/ ext / configure _ builder (12) -
shell
/ command-processor (6) -
webrick
/ accesslog (24) -
webrick
/ cgi (12) -
webrick
/ httpauth / basicauth (12) -
webrick
/ httpauth / digestauth (24) -
webrick
/ httpproxy (12) -
webrick
/ httprequest (12) -
webrick
/ httpresponse (24) -
webrick
/ https (12) -
webrick
/ httpserver (12) -
webrick
/ httpservlet / filehandler (12) -
win32
/ registry (72)
クラス
-
Gem
:: ConfigFile (84) -
Gem
:: Ext :: ConfigureBuilder (12) -
JSON
:: State (24) -
OpenSSL
:: Config (168) -
OpenSSL
:: X509 :: ExtensionFactory (24) - OptionParser (24)
-
Shell
:: CommandProcessor (6) -
WEBrick
:: CGI (12) -
WEBrick
:: HTTPAuth :: BasicAuth (12) -
WEBrick
:: HTTPAuth :: DigestAuth (12) -
WEBrick
:: HTTPProxyServer (12) -
WEBrick
:: HTTPRequest (12) -
WEBrick
:: HTTPResponse (24) -
WEBrick
:: HTTPServer (12) -
WEBrick
:: HTTPServlet :: FileHandler (12) -
Win32
:: Registry (36)
モジュール
- Gem (12)
- Kernel (24)
- RbConfig (36)
-
WEBrick
:: AccessLog (12) -
WEBrick
:: Config (12) -
Win32
:: Registry :: Constants (36)
キーワード
-
$ -I (6) -
$ : (6) -
$ LOAD _ PATH (12) -
1
. 6 . 8から1 . 8 . 0への変更点(まとめ) (12) - AccessLog (12)
- ConfigError (12)
- ConfigMap (12)
-
DEFAULT
_ CONFIG _ FILE (12) -
DEFAULT
_ UPDATE _ SOURCES (12) - DRbProtocol (12)
- DigestAuth (12)
-
HKEY
_ PERFORMANCE _ DATA (24) -
HKEY
_ PERFORMANCE _ NLSTEXT (24) -
HKEY
_ PERFORMANCE _ TEXT (24) - HTTP (12)
-
MAKEFILE
_ CONFIG (12) -
OPERATING
_ SYSTEM _ DEFAULTS (12) -
PLATFORM
_ DEFAULTS (12) - TOPDIR (12)
- [] (12)
- []= (12)
-
add
_ value (12) - build (12)
- config (24)
- config= (12)
- configure (12)
-
default
_ argv= (12) - each (12)
- environment (12)
-
get
_ value (12) - irb (6)
- load (12)
- merge (12)
- new (108)
- parse (12)
- path (12)
- path= (12)
-
ruby 1
. 8 . 2 feature (12) -
ruby 1
. 8 . 3 feature (12) -
ruby 1
. 8 . 4 feature (12) -
ruby 1
. 9 feature (12) -
rubygems
/ commands / cleanup _ command (12) -
rubygems
/ commands / dependency _ command (12) -
rubygems
/ commands / fetch _ command (12) -
rubygems
/ commands / help _ command (12) -
rubygems
/ commands / install _ command (12) -
rubygems
/ commands / pristine _ command (12) -
rubygems
/ commands / server _ command (12) -
rubygems
/ commands / specification _ command (12) -
rubygems
/ commands / unpack _ command (12) -
run
_ config (6) - section (12)
- sections (12)
-
setup
_ params (12) -
to
_ s (12) -
update
_ sources (12) -
update
_ sources= (12) - value (24)
- xmlrpc (3)
- パターンマッチ (12)
検索結果
先頭5件
-
OpenSSL
:: Config (21036.0) -
OpenSSL の設定ファイルを表すクラスです。
...OpenSSL の設定ファイルを表すクラスです。
OpenSSL の設定ファイルは、キーと文字列を対応付けた単純な構造をしています。
また、キーはセクションによってグループ分けされています。
どのセクションにも属さないグロー......読み込む例
require 'openssl'
conf = OpenSSL::Config.load(OpenSSL::Config::DEFAULT_CONFIG_FILE)
p conf.sections # => ["req_distinguished_name", "req_attributes", "proxy_cert_ext", "policy_anything", "CA_default", ...]
p conf.get_value("", "HOME") # => "."
p conf.get_value("CA_default"... -
Gem
:: ConfigMap -> Hash (12216.0) -
RbConfig::CONFIG の中からこのライブラリで使用するものを抽出して定義したハッシュ。
...RbConfig::CONFIG の中からこのライブラリで使用するものを抽出して定義したハッシュ。... -
OpenSSL
:: Config :: DEFAULT _ CONFIG _ FILE -> String (12101.0) -
デフォルトの設定ファイル名を返します。
デフォルトの設定ファイル名を返します。 -
RbConfig
. expand(val , config = CONFIG) -> String (9314.0) -
与えられたパスを展開します。
...パスを展開します。
RbConfig.expand("$(bindir)") # => /home/foobar/all-ruby/ruby19x/bin
@param val 展開したい変数名を Makefile に書く形式で指定します。
@param config 変数展開に使用する設定を Hash で指定します。
@see RbConfig::MAKEFILE_CONFIG... -
OpenSSL
:: X509 :: ExtensionFactory # config -> OpenSSL :: Config (9302.0) -
自身に設定されているコンフィグファイルオブジェクトを設定します。
自身に設定されているコンフィグファイルオブジェクトを設定します。 -
OpenSSL
:: X509 :: ExtensionFactory # config=(config) (9238.0) -
自身にコンフィグファイルオブジェクトを設定します。
...自身にコンフィグファイルオブジェクトを設定します。
例
require 'openssl'
factory.config = OpenSSL::Config.load(OpenSSL::Config::DEFAULT_CONFIG_FILE)
@param config 設定ファイル(OpenSSL::Config オブジェクト)... -
OpenSSL
:: Config . parse(str) -> OpenSSL :: Config (9217.0) -
文字列から OpenSSL::Config オブジェクトを生成します。
...文字列から OpenSSL::Config オブジェクトを生成します。
@param str 設定ファイルデータ... -
Gem
:: ConfigFile # path=(path) (9200.0) -
Gem を探索するパスをセットします。
Gem を探索するパスをセットします。 -
Gem
:: ConfigFile # update _ sources=(update _ sources) (9200.0) -
Gem::SourceInfoCache を毎回更新するかどうか設定します。
...Gem::SourceInfoCache を毎回更新するかどうか設定します。
@param update_sources 真を指定すると毎回 Gem::SourceInfoCache を更新します。...