Atomフィードを生成
適応バージョン
- 2.0.3
- 2.1.0
- 2.2.1
- 2.3.2
- 2.3.8
- 3.0.0
- 3.0.5
- 3.0.7
- 3.0.9
- 3.1.0
- 3.2.3
- 3.2.8
- 3.2.13
- 4.0.2
- 4.1.8
- 4.2.1
- 4.2.7
- 4.2.9
- 5.0.0.1
- 5.1.7
- 5.2.3
- 6.0.2.1
- 7.0.0
説明
Atomフィードを生成
使い方
atom_feed([オプション]) do |f|
end
オプション
オプション | 説明 | デフォルト値 |
---|---|---|
:language | 使用する言語 | en-US |
:root_url | フィードを置き換える文章のURL | / |
:url | フィードのURL | 現在のURL |
:id | フィードのid値 | |
:schema_date | スキーマ情報 | 今年 |
:instruct | XMLのハッシュ |
例
Atomフィードを生成
atom_feed do |f|
f.title('新着記事フィード')
f.updated(@pages.last.created_at)
@pages.each do |p|
feed.entry(p, url: p.url, published: p.published, updated: p.updated_at) do |i|
i.title(p,title)
i.content("#{@page.published} 公開")
end
end
end
日本語を指定
atom_feed(language: 'ja-JP') do |f|
f.title('新着記事フィード')
f.updated(@pages.last.created_at)
@pages.each do |p|
feed.entry(p, url: p.url, published: p.published, updated: p.updated_at) do |i|
i.title(p,title)
i.content("#{@page.published} 公開")
end
end
end