Class: RSS::ITunesChannelModel::ITunesOwner
Constant Summary
Constant Summary
Constants included from RSS09
RSS09::ELEMENTS, RSS09::NSPOOL
Constants inherited from Element
Element::GET_ATTRIBUTES, Element::HAVE_CHILDREN_ELEMENTS, Element::INDENT, Element::MODELS, Element::MUST_CALL_VALIDATORS, Element::NEED_INITIALIZE_VARIABLES, Element::PLURAL_FORMS, Element::TO_ELEMENT_METHODS
Instance Attribute Summary
Attributes inherited from Element
Class Method Summary (collapse)
Instance Method Summary (collapse)
- - (Object) full_name
-
- (ITunesOwner) initialize(*args)
constructor
A new instance of ITunesOwner.
Methods included from RSS09
Methods inherited from Element
add_have_children_element, add_need_initialize_variable, add_plural_form, add_to_element_method, content_setup, #convert, #converter=, def_corresponded_attr_reader, def_corresponded_attr_writer, get_attributes, have_children_elements, have_content?, #have_xml_content?, inherited, inherited_base, install_get_attribute, install_model, install_must_call_validator, install_ns, models, must_call_validators, #need_base64_encode?, need_initialize_variables, need_parent?, plural_forms, #set_next_element, tag_name, #tag_name, to_element_methods, #to_s, #valid?, #validate, #validate_for_stream
Methods included from Utils::InheritedReader
#inherited_array_reader, #inherited_hash_reader, #inherited_reader
Methods included from BaseModel
#install_date_element, #install_have_child_element, #install_have_children_element, #install_text_element
Methods included from Utils
#element_initialize_arguments?, #get_file_and_line_from_caller, #html_escape, #new_with_value_if_need, #to_class_name
Methods included from SetupMaker
Constructor Details
- (ITunesOwner) initialize(*args)
A new instance of ITunesOwner
214 215 216 217 218 219 220 221 222 |
# File 'lib/rss/itunes.rb', line 214 def initialize(*args) if Utils.element_initialize_arguments?(args) super else super() self.itunes_name = args[0] self.itunes_email = args[1] end end |
Class Method Details
+ (Object) required_prefix
196 197 198 |
# File 'lib/rss/itunes.rb', line 196 def required_prefix ITUNES_PREFIX end |
+ (Object) required_uri
200 201 202 |
# File 'lib/rss/itunes.rb', line 200 def required_uri ITUNES_URI end |
Instance Method Details
- (Object) full_name
224 225 226 |
# File 'lib/rss/itunes.rb', line 224 def full_name tag_name_with_prefix(ITUNES_PREFIX) end |