Class Syndication::RSS::Cloud
In: lib/syndication/rss.rb
Parent: Syndication::Container

The element is very rarely used. It was added to the RSS standards to support the rssCloud protocol of Radio UserLand.

Methods

new   port=  

Attributes

domain  [RW]  The hostname to connect to.
path  [RW]  The request path.
port  [R]  The TCP/IP port number.
protocol  [RW]  The protocol to use.
registerprocedure  [RW]  The registration method.

Public Class methods

[Source]

# File lib/syndication/rss.rb, line 231
    def initialize(parent, tag, attrs = nil)
      @tag = tag
      @parent = parent
      if attrs
        attrs.each_pair {|key, value|
          self.store(key, value)
        }
      end
    end

Public Instance methods

Set port number

[Source]

# File lib/syndication/rss.rb, line 227
    def port=(x)
      @port = x.to_i
    end

[Validate]