検索結果
-
DublinCoreModel
# dc _ title (18102.0) -
@todo
@todo -
DublinCoreModel
# dc _ title= (6102.0) -
@todo
@todo -
DublinCoreModel
# dc _ titles (6100.0) -
@todo
@todo -
rss (18.0)
-
RSS を扱うためのライブラリです。
...ss.channel.dc_title # => 「要素の内容を表す文字列」
# ("My site"など)
rss.channel.dc_titles # => 「要素を表すオブジェクト」の配列
# ([DublinCoreTitleオブジェクト, ...])
rss.channel.dc_titles.collect {......te", ...]など)
rss.channel.dc_titles.first.value == rss.channel.dc_title
# => true
# 厳密にはこう
first_title = rss.channel.dc_titles.first
first_title = first_title.value if first_title
first_title == rss.channel.dc_title
# => tru...