Class: RSS::Rss::Channel::Item::Guid

Inherits:
Element
  • Object
show all
Includes:
RSS::RSS09
Defined in:
lib/rss/2.0.rb

Constant Summary

Constants included from RSS::RSS09

RSS::RSS09::ELEMENTS, RSS::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

#do_validate

Instance Method Summary collapse

Methods included from RSS::RSS09

append_features

Methods inherited from Element

#convert, #converter=, #full_name, get_attributes, have_children_elements, inherited, install_ns, models, must_call_validators, need_initialize_variables, plural_forms, required_prefix, required_uri, #setup_maker, #tag_name, tag_name, to_element_methods, #to_s, #validate, #validate_for_stream

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

Constructor Details

#initialize(*args) ⇒ Guid

Returns a new instance of Guid.



73
74
75
76
77
78
79
80
81
# File 'lib/rss/2.0.rb', line 73

def initialize(*args)
  if Utils.element_initialize_arguments?(args)
    super
  else
    super()
    self.isPermaLink = args[0]
    self.content = args[1]
  end
end

Instance Method Details

#PermaLink?Boolean

Returns:

  • (Boolean)


85
86
87
88
# File 'lib/rss/2.0.rb', line 85

def PermaLink?
  perma = _PermaLink?
  perma or perma.nil?
end