6件ヒット
[1-6件を表示]
(0.022秒)
ライブラリ
- openssl (1)
-
rubygems
/ specification (5)
クラス
キーワード
-
array
_ attributes (1) - attribute (1)
-
attribute
_ defaults (1) - register (1)
-
required
_ attributes (1)
検索結果
先頭5件
-
Gem
:: Specification . attributes(*args) -> () (63307.0) -
複数の属性を一度に作成するために使用します。
複数の属性を一度に作成するために使用します。
各属性のデフォルト値は nil になります。
@param args 属性名を一つ以上指定します。 -
Gem
:: Specification . array _ attributes -> Array (27355.0) -
@@array_attributes の複製を返します。
@@array_attributes の複製を返します。
@see Object#dup -
Gem
:: Specification . required _ attributes -> Array (27307.0) -
必須属性のリストを返します。
必須属性のリストを返します。 -
Gem
:: Specification . attribute(name) -> () (9022.0) -
デフォルト値を指定したアクセサを定義するために使用します。
デフォルト値を指定したアクセサを定義するために使用します。
以下の副作用があります。
* クラス変数 @@attributes, @@default_value を変更します。
* 通常の属性書き込みメソッドを定義します。
* デフォルト値を持つ属性読み取りメソッドのように振る舞うメソッドを定義します。 -
Gem
:: Specification . attribute _ defaults -> Array (9022.0) -
@todo
@todo
@@attributes の複製を返します。 -
OpenSSL
:: ASN1 :: ObjectId . register(oid , short _ name , long _ name) -> true (340.0) -
オブジェクト識別子に対応する名前(short name と long name)を OpenSSLの内部テーブルに登録します。
オブジェクト識別子に対応する名前(short name と long name)を
OpenSSLの内部テーブルに登録します。
登録した名前は OpenSSL::X509::Extension などで利用できるようになります。
例:
require "openssl"
OpenSSL::ASN1::ObjectId.register(
"2.5.29.9", "subjectDirAttrs", "X509v3 Subject Directory Attributes")
p OpenSSL::ASN1::ObjectId.new("2.5.29.9").long_n...