ruby / rss

RSS reading and writing
BSD 2-Clause "Simplified" License
183 stars 36 forks source link

Adds the 'itunes:type' tag #16

Closed babasbot closed 4 years ago

babasbot commented 4 years ago

I was trying to parse a podcast RSS feed that contained the <itunes:type> situational tag used by serial podcasts.

Extracted from A podcaster’s guide to RSS document:

episodic (default). Specify episodic when episodes are intended to be consumed without any specific order. Apple Podcasts will present newest episodes first and display the publish date (required) of each episode. If organized into seasons, the newest season will be presented first - otherwise, episodes will be grouped by year published, newest first.

serial. Specify serial when episodes are intended to be consumed in sequential order. Apple Podcasts will present the oldest episodes first and display the episode numbers (required) of each episode. If organized into seasons, the newest season will be presented first and numbers must be given for each episode.

This pull request allows us to access that tag value with channel.itunes_type.

kou commented 4 years ago

Thanks.