別のキーワード
ライブラリ
-
cgi
/ html (252) - json (12)
- openssl (156)
-
rdoc
/ context (60) -
rdoc
/ markup (24) -
rexml
/ document (540) -
rexml
/ sax2listener (12) -
rexml
/ streamlistener (12) - rss (12)
-
rubygems
/ specification (120) - uri (24)
-
webrick
/ httprequest (12)
クラス
-
Gem
:: Specification (120) -
JSON
:: State (12) -
OpenSSL
:: X509 :: Attribute (84) -
OpenSSL
:: X509 :: Request (36) -
RDoc
:: Context (60) -
RDoc
:: Markup (24) -
REXML
:: Attribute (192) -
REXML
:: Attributes (192) -
REXML
:: DocType (24) -
REXML
:: Element (96) -
URI
:: LDAP (24) -
WEBrick
:: HTTPRequest (12)
モジュール
-
CGI
:: HtmlExtension (252) -
REXML
:: SAX2Listener (12) -
REXML
:: StreamListener (12)
キーワード
- << (12)
- == (12)
- Attribute (24)
- AttributeError (12)
- Attributes (12)
- MissingAttributeError (12)
-
NEWS for Ruby 2
. 4 . 0 (9) -
NEWS for Ruby 2
. 6 . 0 (7) - Namespace (12)
- Request (12)
- [] (12)
- []= (24)
- add (12)
-
add
_ attribute (48) -
add
_ attributes (12) -
add
_ to (12) -
array
_ attribute (12) -
array
_ attributes (12) - attlistdecl (12)
-
attribute
_ alias _ singular (12) -
attribute
_ defaults (12) -
attribute
_ manager (12) -
attribute
_ names (12) -
attribute
_ of (12) - attributes (72)
- attributes= (24)
-
attributes
_ of (12) - checkbox (12)
-
checkbox
_ group (12) - clone (12)
- delete (12)
-
delete
_ all (12) -
delete
_ attribute (12) - each (12)
-
each
_ attribute (24) -
each
_ element _ with _ attribute (12) - element (12)
- element= (12)
-
file
_ field (12) -
find
_ local _ symbol (12) - form (24)
-
get
_ attribute (12) -
get
_ attribute _ ns (12) -
has
_ attributes? (12) - hidden (12)
- html (24)
- img (12)
- length (12)
-
multipart
_ form (24) - namespace (12)
- namespaces (12)
-
net
/ http (12) - new (72)
-
node
_ type (12) - normalized= (12)
- oid (12)
- oid= (12)
-
password
_ field (12) - prefix (12)
- prefixes (12)
-
radio
_ group (12) -
rdoc
/ parser / ruby (12) - remove (12)
-
required
_ attribute (12) -
required
_ attribute? (12) -
required
_ attributes (12) - reset (12)
-
rexml
/ document (12) -
scrolling
_ list (12) - size (12)
-
start
_ element (12) - submit (12)
-
text
_ field (12) - textarea (12)
-
to
_ a (12) -
to
_ der (12) -
to
_ s (12) -
to
_ string (12) - value (24)
- value= (12)
- write (12)
- xpath (12)
検索結果
先頭5件
-
REXML
:: Element # each _ element _ with _ attribute(key , value = nil , max = 0 , name = nil) {|element| . . . } -> () (6125.0) -
特定の属性を持つすべての子要素を引数としてブロックを呼び出します。
...ent_with_attribute('id'){|e| p e }
# >> <b id='1'/>
# >> <c id='2'/>
# >> <d id='1'/>
doc.root.each_element_with_attribute('id', '1'){|e| p e }
# >> <b id='1'/>
# >> <d id='1'/>
doc.root.each_element_with_attribute('id', '1', 1){|e| p e }
# >> <b id='1'/>
doc.root.each_element_with_attribute('id', '... -
Gem
:: Specification . array _ attribute(name) -> () (6123.0) -
Gem::Specification.attribute と同じですが、値を配列に格納するアクセサを作ります。
...Gem::Specification.attribute と同じですが、値を配列に格納するアクセサを作ります。
@param name 属性の名前を指定します。
@see Gem::Specification.attribute... -
URI
:: LDAP # attributes=(s) (6122.0) -
自身の Attribute を文字列で設定します。
...自身の Attribute を文字列で設定します。
@param s 自身の Attribute を文字列で設定します。... -
URI
:: LDAP # attributes -> String (6116.0) -
自身の Attribute を文字列で返します。
...自身の Attribute を文字列で返します。... -
Gem
:: Specification . attribute _ alias _ singular(singular , plural) -> () (6107.0) -
既に存在する複数形の属性の単数形バージョンを定義します。
...それを配列に追加するようなヘルパーメソッドを定義するということです。
例:
# このように定義すると
attribute_alias_singular :require_path, :require_paths
# こう書くかわりに
s.require_paths = ['mylib']
# こう書くことができます... -
Gem
:: Specification . required _ attribute(name , default = nil) -> () (6107.0) -
必須の属性を作成します。
...必須の属性を作成します。
@param name 属性名を指定します。
@param default デフォルト値を指定します。
@see Gem::Specification.attribute... -
Gem
:: Specification . attribute _ defaults -> Array (6101.0) -
@todo
...@todo
@@attributes の複製を返します。... -
Gem
:: Specification . attribute _ names -> Array (6101.0) -
属性名の配列を返します。
属性名の配列を返します。 -
Gem
:: Specification . required _ attribute?(name) -> bool (6101.0) -
必須属性であれば真を返します。
必須属性であれば真を返します。
@param name 属性名を指定します。