RSS 1.0 では description が必須なため?、description が空文字の場合、RSSが生成されない。
$ svn diff .
Index: plugin/RSS/save.rb
===================================================================
--- plugin/RSS/save.rb (リビジョン 100)
+++ plugin/RSS/save.rb (作業コピー)
@@ -18,7 +18,7 @@
rss = RSS::Maker.make("1.0") do |maker|
maker.channel.about = config['about'] || config['link'] || "http://example.net/"
maker.channel.title = config['title'] || "Pragger output"
- maker.channel.description = config['description'] || ""
+ maker.channel.description = config['description'] || "Generated by Pragger."
maker.channel.link = config['link'] || "http://example.net/"
data.each do |i|
- 参考
-
ruby-list:44938 RSSが生成されない