hubbub 0.0.8 → 0.0.9
Sign up to get free protection for your applications and to get access to all the features.
@@ -8,7 +8,7 @@ atom_feed(
|
|
8
8
|
feed.generator "Hubbub", "uri" => "http://github.com/rapodaca/hubbub"
|
9
9
|
|
10
10
|
@articles.each do |article|
|
11
|
-
feed.entry(article, :url =>
|
11
|
+
feed.entry(article, :url => article_permalink_url(article), :published => article.created_at, :updated => article.updated_at) do |entry|
|
12
12
|
entry.title article.title
|
13
13
|
entry.content article.body_html, :type => 'html'
|
14
14
|
end
|
@@ -8,7 +8,7 @@ atom_feed(
|
|
8
8
|
feed.generator "Hubbub", "uri" => "http://github.com/rapodaca/hubbub"
|
9
9
|
|
10
10
|
@articles.each do |article|
|
11
|
-
feed.entry(article, :url =>
|
11
|
+
feed.entry(article, :url => article_permalink_url(article), :published => article.created_at, :updated => article.updated_at) do |entry|
|
12
12
|
entry.title article.title
|
13
13
|
entry.content article.body_html, :type => 'html'
|
14
14
|
end
|