Module Syndication::Podcast::Both
In: lib/syndication/podcast.rb

iTunes fields which occur both in Channels and in Items.

Methods

Attributes

itunes_block  [RW]  Prevent this entity from appearing in the iTunes podcast directory?
itunes_category  [R]  Category column(s) in iTunes and music store browser, as an array of strings (categories then subcategories).
itunes_explicit  [RW]  Parental advisory graphic?
itunes_keywords  [RW]  Keywords, not shown but can be searched via iTunes.
itunes_subtitle  [RW]  Description column in iTunes.
itunes_summary  [RW]  Summary, shown when i-in-circle icon is clicked in Description column of iTunes.

Public Instance methods

Add an iTunes category; they can be nested.

[Source]

# File lib/syndication/podcast.rb, line 67
      def itunes_category=(x)
        if !@itunes_category
          @itunes_category = Array.new
        end
        @itunes_category.push(x)
      end

[Validate]