Hi! I've had a similar issue to #28 today with trying to set categories on an Rss 2.0 feed. I couldn't set categories=, but I appeared to be able to do
item.categories << 'Digital specialists'
... but when the feed was generated, I'd get
NoMethodError:
undefined method `to_feed' for "Digital specialists":String`
Eventually, by some trial and error and a debugger, I found that what I seemingly need to do is
Is there a shorter way of doing this, and is there a way in which I might be able to contribute to the docs to cover both this sort of example and the one from #28?
Hi! I've had a similar issue to #28 today with trying to set categories on an Rss 2.0 feed. I couldn't set
categories=
, but I appeared to be able to do... but when the feed was generated, I'd get
Eventually, by some trial and error and a debugger, I found that what I seemingly need to do is
Is there a shorter way of doing this, and is there a way in which I might be able to contribute to the docs to cover both this sort of example and the one from #28?