Class RSS::Rss::Channel::TextInput
In: lib/rss/0.9.rb
Parent: Element

Methods

maker_target   new  

Included Modules

RSS09

Public Class methods

[Source]

     # File lib/rss/0.9.rb, line 385
385:         def initialize(*args)
386:           if Utils.element_initialize_arguments?(args)
387:             super
388:           else
389:             super()
390:             self.title = args[0]
391:             self.description = args[1]
392:             self.name = args[2]
393:             self.link = args[3]
394:           end
395:         end

Private Instance methods

[Source]

     # File lib/rss/0.9.rb, line 398
398:         def maker_target(maker)
399:           maker.textinput
400:         end

[Validate]