Class: RSS::Rss::Channel::Item::Guid
| Relationships & Source Files | |
| Super Chains via Extension / Inclusion / Inheritance | |
| Class Chain: | |
| Instance Chain: | |
| Inherits: | RSS::Element 
 | 
| Defined in: | lib/rss/2.0.rb | 
Constant Summary
::RSS::Element - Inherited
  GET_ATTRIBUTES, HAVE_CHILDREN_ELEMENTS, INDENT, MODELS, MUST_CALL_VALIDATORS, NEED_INITIALIZE_VARIABLES, PLURAL_FORMS, TO_ELEMENT_METHODS
::RSS::RSS09 - Included
  
Class Attribute Summary
::RSS::Element - Inherited
Class Method Summary
- .new(*args) ⇒ Guid constructor
::RSS::Element - Inherited
::RSS::Utils::InheritedReader - Extended
::RSS::BaseModel - Extended
::RSS::Utils - Included
| element_initialize_arguments? | This method is used inside of several different objects to determine if special behavior is needed in the constructor. | 
| get_file_and_line_from_caller | Returns an array of two elements: the filename where the calling method is located, and the line number where it is defined. | 
| h, | |
| html_escape | Takes a string  | 
| new_with_value_if_need | If  | 
| to_class_name | Given a  | 
Instance Attribute Summary
- PermaLink? ⇒ Boolean readonly
::RSS::Element - Inherited
Instance Method Summary
- #_PermaLink? private
- #maker_target(item) private
- #setup_maker_attributes(guid) private
::RSS::Element - Inherited
::RSS::SetupMaker - Included
| #setup_maker, #maker_target, #not_need_to_call_setup_maker_variables, #setup_maker_attributes, #setup_maker_element, #setup_maker_elements | 
::RSS::Utils - Included
| #element_initialize_arguments? | This method is used inside of several different objects to determine if special behavior is needed in the constructor. | 
| #get_file_and_line_from_caller | Returns an array of two elements: the filename where the calling method is located, and the line number where it is defined. | 
| #h, | |
| #html_escape | Takes a string  | 
| #new_with_value_if_need | If  | 
| #to_class_name | Given a  | 
Constructor Details
    .new(*args)  ⇒ Guid 
  
# File 'lib/rss/2.0.rb', line 105
def initialize(*args) if Utils.element_initialize_arguments?(args) super else super() self.isPermaLink = args[0] self.content = args[1] end end
Instance Attribute Details
    PermaLink?  ⇒ Boolean  (readonly)
  
  [ GitHub ]
# File 'lib/rss/2.0.rb', line 117
def PermaLink? perma = _PermaLink? perma or perma.nil? end
Instance Method Details
#_PermaLink? (private)
[ GitHub ]# File 'lib/rss/2.0.rb', line 115
alias_method :_PermaLink?, :PermaLink?
#maker_target(item) (private)
[ GitHub ]# File 'lib/rss/2.0.rb', line 123
def maker_target(item) item.guid end
#setup_maker_attributes(guid) (private)
[ GitHub ]# File 'lib/rss/2.0.rb', line 127
def setup_maker_attributes(guid) guid.isPermaLink = isPermaLink guid.content = content end