In Files

  • rss/maker/2.0.rb

Class/Module Index [+]

Quicksearch

RSS::Maker::RSS20::Channel::Cloud

Public Instance Methods

have_required_values?() click to toggle source
 
               # File rss/maker/2.0.rb, line 44
def have_required_values?
  @domain and @port and @path and
    @registerProcedure and @protocol
end
            
to_rss(rss, channel) click to toggle source
 
               # File rss/maker/2.0.rb, line 35
def to_rss(rss, channel)
  cloud = Rss::Channel::Cloud.new
  set = setup_values(cloud)
  if set
    channel.cloud = cloud
    setup_other_elements(rss)
  end
end