Class RSS::Maker::RSS09::Textinput
In: lib/rss/maker/0.9.rb
lib/rss/maker/dublincore.rb
Parent: TextinputBase

Methods

Public Instance methods

[Source]

     # File lib/rss/maker/0.9.rb, line 205
205:         def to_rss(rss)
206:           textInput = Rss::Channel::TextInput.new
207:           set = setup_values(textInput)
208:           if set
209:             rss.channel.textInput = textInput
210:             setup_other_elements(rss)
211:           end
212:         end

Private Instance methods

[Source]

     # File lib/rss/maker/0.9.rb, line 215
215:         def have_required_values?
216:           @title and @description and @name and @link
217:         end

[Validate]