I have the following code
MINDSCAPE_FEED='https://rss.art19.com/sean-carrolls-mindscape'URI.open(MINDSCAPE_FEED)do |rss|
feed=RSS::Parser.parse(rss,ignore_unknown_element=true)puts"Title: #{feed.channel.title}"feed.items.eachdo |item|
putsitem.itunes_episode_typeendendIs there any way to access the itunes::episodeType attribute? More generically is there a way to access tags that the parser doesn't know about?
I have the following code
Is there any way to access the itunes::episodeType attribute? More generically is there a way to access tags that the parser doesn't know about?