Is there a way to parse a feed of custom elements? Do not upload entries, "upload custom elements. I know there is a way to do the same for entries. How,
Feedzirra::Feed.add_common_feed_entry_element("wfw:commentRss", :as => :comment_rss) feed = Feedzirra::Feed.parse(some_atom_xml) feed.entries.first.comment_rss
I want to be able to achieve the same for the feed object. Sort of,
Feedzirra::Feed.add_common_feed_element("geo:lat", :as => :latitudes) feed = Feedzirra::Feed.fetch_and_parse("somerss") feed.latitudes
Is there any way? Or does it require writing a patch for FeedZirra?
source share