Does anyone know how to code an RSS maker to generate additional tags
for the header of the feed? The gem has a method for ‘lastBuildDate=’
but I cannot get it to work …
I’m using Ruby 1.8.7, specifying rss version “2.0”.
I have it working now … well, the copyright is working, and my problem
with lastBuildDate was because I was passing the String representation
of the time, not a Time object - the error message was not obvious.
Passing Time.now and it works.
My final issue (I hope) is that even though I have:
m.channel.ttl = 10
and get no error message, there is no tag in the xml. Think I
might need to use some of the Maker class to add it(?)