Sha256: 4174b3bdcff34b143d9213561ad6bd316a88baa3cf699d635b9fdc7aba7b62e6
Contents?: true
Size: 1.31 KB
Versions: 1
Compression:
Stored size: 1.31 KB
Contents
module Feedzirra module Parser # iTunes extensions to the standard RSS2.0 item # Source: http://www.apple.com/itunes/whatson/podcasts/specs.html class ITunesRSSItem include SAXMachine include FeedEntryUtilities element :author element :guid, :as => :entry_id element :title element :link, :as => :url element :description, :as => :summary element :pubDate, :as => :published # If author is not present use author tag on the item element :"itunes:author", :as => :itunes_author element :"itunes:block", :as => :itunes_block element :"itunes:duration", :as => :itunes_duration element :"itunes:explicit", :as => :itunes_explicit element :"itunes:keywords", :as => :itunes_keywords element :"itunes:subtitle", :as => :itunes_subtitle # If summary is not present, use the description tag element :"itunes:summary", :as => :itunes_summary element :enclosure, :value => :length, :as => :enclosure_length element :enclosure, :value => :type, :as => :enclosure_type element :enclosure, :value => :url, :as => :enclosure_url def guid warn "Feedzirra: ITunesRSSItem.guid is deprecated, please use `id` or `entry_id` instead. This will be removed in version 1.0" id end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
feedzirra-0.3.0 | lib/feedzirra/parser/itunes_rss_item.rb |