I’m attempting to produce an atom feed using rAtom and have run into
one issue with Atom::Generator. The docs are not real clear. I have
created a new generator using:
I had this same problem. After some playing around (since the rAtom
documentation wasn’t too helpful here), I was able to get it by doing
the following:
f.generator = Atom::Generator.new(:version => ‘1.0’) do |s|
s.name = “My Generator”
end
I doubt you still need the help, but maybe this will help someone else!
sutch wrote:
I’m attempting to produce an atom feed using rAtom and have run into
one issue with Atom::Generator. The docs are not real clear. I have
created a new generator using: