10件ヒット
[1-10件を表示]
(0.069秒)
別のキーワード
ライブラリ
キーワード
-
array
_ attribute (1) -
array
_ attributes (1) -
attribute
_ alias _ singular (1) -
attribute
_ defaults (1) -
attribute
_ names (1) - attributes (1)
-
required
_ attribute (1) -
required
_ attribute? (1) -
required
_ attributes (1)
検索結果
先頭5件
-
Gem
:: Specification . attribute(name) -> () (63310.0) -
デフォルト値を指定したアクセサを定義するために使用します。
デフォルト値を指定したアクセサを定義するために使用します。
以下の副作用があります。
* クラス変数 @@attributes, @@default_value を変更します。
* 通常の属性書き込みメソッドを定義します。
* デフォルト値を持つ属性読み取りメソッドのように振る舞うメソッドを定義します。 -
Gem
:: Specification . array _ attribute(name) -> () (27376.0) -
Gem::Specification.attribute と同じですが、値を配列に格納するアクセサを作ります。
...
Gem::Specification.attribute と同じですが、値を配列に格納するアクセサを作ります。
@param name 属性の名前を指定します。
@see Gem::Specification.attribute... -
Gem
:: Specification . attribute _ alias _ singular(singular , plural) -> () (27328.0) -
既に存在する複数形の属性の単数形バージョンを定義します。
既に存在する複数形の属性の単数形バージョンを定義します。
これは単に一つの引数を受け取りそれを配列に追加するようなヘルパーメソッドを定義するということです。
例:
# このように定義すると
attribute_alias_singular :require_path, :require_paths
# こう書くかわりに
s.require_paths = ['mylib']
# こう書くことができます。
s.require_path = 'mylib'
@param singular 属性名の単数形を指定します。
@param plural 属性名の複数形を... -
Gem
:: Specification . required _ attribute(name , default = nil) -> () (27328.0) -
必須の属性を作成します。
...必須の属性を作成します。
@param name 属性名を指定します。
@param default デフォルト値を指定します。
@see Gem::Specification.attribute... -
Gem
:: Specification . attribute _ defaults -> Array (27310.0) -
@todo
@todo
@@attributes の複製を返します。 -
Gem
:: Specification . attribute _ names -> Array (27310.0) -
属性名の配列を返します。
属性名の配列を返します。 -
Gem
:: Specification . required _ attribute?(name) -> bool (27310.0) -
必須属性であれば真を返します。
必須属性であれば真を返します。
@param name 属性名を指定します。 -
Gem
:: Specification . array _ attributes -> Array (27307.0) -
@@array_attributes の複製を返します。
@@array_attributes の複製を返します。
@see Object#dup -
Gem
:: Specification . attributes(*args) -> () (27307.0) -
複数の属性を一度に作成するために使用します。
複数の属性を一度に作成するために使用します。
各属性のデフォルト値は nil になります。
@param args 属性名を一つ以上指定します。 -
Gem
:: Specification . required _ attributes -> Array (27307.0) -
必須属性のリストを返します。
必須属性のリストを返します。