るりまサーチ

最速Rubyリファレンスマニュアル検索!
24件ヒット [1-24件を表示] (0.043秒)

別のキーワード

  1. kernel require
  2. getoptlong require_order
  3. rubygems/custom_require require
  4. irb/ext/use-loader irb_require
  5. require execute

キーワード

検索結果

OpenSSL::Config#each {|section, key, value| ... } -> self (15.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"...

OpenSSL::X509::ExtensionFactory#config=(config) (15.0)

自身にコンフィグファイルオブジェクトを設定します。

...自身にコンフィグファイルオブジェクトを設定します。


require
'openssl'
factory.config = OpenSSL::Config.load(OpenSSL::Config::DEFAULT_CONFIG_FILE)

@param config 設定ファイル(OpenSSL::Config オブジェクト)...