# File lib/parsers/rss.rb, line 101 def self.skip(parser, attribute) case attribute when :skipHours then attributes = :hours when :skipDays then attributes = :days end channel = parser.channel return nil unless channel.respond_to?(attribute) && a = channel.send(attribute) a.send(attributes).collect{|e| e.content} end