Class: RSS::Maker::RSS09::Textinput

Inherits:
TextinputBase show all
Defined in:
lib/rss/maker/0.9.rb,
lib/rss/maker/dublincore.rb

Direct Known Subclasses

RSS::Maker::RSS20::Textinput

Instance Method Summary collapse

Methods inherited from TextinputBase

#current_element

Methods included from DublinCoreModel

append_features, install_dublin_core

Methods included from Base

append_features, #initialize

Instance Method Details

#to_rss(rss) ⇒ Object



205
206
207
208
209
210
211
212
# File 'lib/rss/maker/0.9.rb', line 205

def to_rss(rss)
  textInput = Rss::Channel::TextInput.new
  set = setup_values(textInput)
  if set
    rss.channel.textInput = textInput
    setup_other_elements(rss)
  end
end