検索結果
-
DublinCoreModel
# dc _ titles (18101.0) -
@todo
@todo -
rss (24.0)
-
RSS を扱うためのライブラリです。
...列」
# ("My site"など)
rss.channel.dc_titles # => 「要素を表すオブジェクト」の配列
# ([DublinCoreTitleオブジェクト, ...])
rss.channel.dc_titles.collect {|title| title.value}
# => 「要素......の配列
# (["My site", ...]など)
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.cha...