Class: RSS::Maker::RSS10::Textinput

Inherits:
TextinputBase show all
Defined in:
lib/rss/maker/1.0.rb

Constant Summary

Constants inherited from Base

Base::NEED_INITIALIZE_VARIABLES, Base::OTHER_ELEMENTS

Instance Attribute Summary

Attributes inherited from Base

#maker

Instance Method Summary collapse

Methods included from DublinCoreModel

append_features, install_dublin_core

Methods inherited from Base

add_need_initialize_variable, add_other_element, def_array_element, def_classed_element, def_classed_element_without_accessor, def_classed_elements, def_csv_element, def_other_element, def_other_element_without_accessor, inherited, inherited_base, #initialize, need_initialize_variables, other_elements, #variable_is_set?

Methods included from Utils::InheritedReader

#inherited_array_reader, #inherited_hash_reader, #inherited_reader

Constructor Details

This class inherits a constructor from RSS::Maker::Base

Instance Method Details

#have_required_values?Boolean

Returns:

  • (Boolean)


421
422
423
# File 'lib/rss/maker/1.0.rb', line 421

def have_required_values?
  super and @maker.channel.have_required_values?
end

#to_feed(rss) ⇒ Object



409
410
411
412
413
414
415
416
417
418
419
# File 'lib/rss/maker/1.0.rb', line 409

def to_feed(rss)
  if @link
    textinput = RDF::Textinput.new(@link)
    set = setup_values(textinput)
    if set
      rss.textinput = textinput
      set_parent(textinput, rss)
      setup_other_elements(rss, textinput)
    end
  end
end