るりまサーチ

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

別のキーワード

  1. openssl t61string
  2. asn1 t61string
  3. matrix t
  4. t61string new
  5. fiddle type_size_t

ライブラリ

キーワード

検索結果

<< 1 2 > >>

RSS::Maker::ItemsBase::ItemBase#author (27203.0)

@todo

...@todo...

RSS::Rss::Channel::Item#author (24203.0)

@todo

...@todo...

Gem::Specification#author -> String (24202.0)

作成者の名前を返します。

作成者の名前を返します。

RSS::Maker::ItemsBase::ItemBase#author=() (15203.0)

@todo

...@todo...

RSS::Rss::Channel::Item#author= (12203.0)

@todo

...@todo...

絞り込み条件を変える

Gem::Specification#author=(name) (12202.0)

作成者の名前をセットします。

作成者の名前をセットします。

Gem::Specification#authors -> Array (12201.0)

作成者の名前の配列を返します。

作成者の名前の配列を返します。

Gem::Specification#authors=(names) (12201.0)

作成者の名前の配列をセットします。

作成者の名前の配列をセットします。

REXML::DocType#attributes_of(element) -> [REXML::Attribute] (6219.0)

DTD 内の属性リスト宣言で、 element という名前の要素に対し宣言されている 属性の名前とデフォルト値を REXML::Attribute の配列で返します。

...TD 内の属性リスト宣言で、 element という名前の要素に対し宣言されている
属性の名前とデフォルト値を REXML::Attribute の配列で返します。

名前とデフォルト値のペアは、各 Attribute オブジェクトの
REXML::Attribute#name と
REXML::Att...
...ribute#value で表現されます。

//emlist[][ruby]{
require 'rexml/document'

doctype = REXML::Document.new(<<EOS).doctype
<!DOCTYPE books [
<!ELEMENT book (comment)>
<!ELEMENT comment (#PCDATA)>
<!ATTLIST book
author
CDATA #REQUIRED
t
itle CDATA #REQUIRED
publisher...
...CDATA "foobar publisher">
]>
EOS

p doctype.attributes_of("book")
# => [author='', title='', publisher='foobar publisher']
p doctype.attributes_of("book")[0].name # => "author"
p doctype.attributes_of("book")[0].value # => ""
//}...
<< 1 2 > >>