Namespace
- CLASS RSS::Rss::Channel::Cloud
- CLASS RSS::Rss::Channel::Image
- CLASS RSS::Rss::Channel::Item
- CLASS RSS::Rss::Channel::SkipDays
- CLASS RSS::Rss::Channel::SkipHours
- CLASS RSS::Rss::Channel::TextInput
Methods
Included Modules
Constants
Category | = | Item::Category |
Instance Private methods
maker_target(maker)
Link
not_need_to_call_setup_maker_variables()
Link
setup_maker_elements(channel)
Link
# File ../ruby/lib/rss/0.9.rb, line 107 def setup_maker_elements(channel) super [ [skipDays, "day"], [skipHours, "hour"], ].each do |skip, key| if skip skip.__send__("#{key}s").each do |val| target_skips = channel.__send__("skip#{key.capitalize}s") new_target = target_skips.__send__("new_#{key}") new_target.content = val.content end end end end