123456789_123456789_123456789_123456789_123456789_

Class: RSS::TaxonomyTopicsModel::TaxonomyTopics

Relationships & Source Files
Super Chains via Extension / Inclusion / Inheritance
Class Chain:
Instance Chain:
Inherits: RSS::Element
  • Object
Defined in: lib/rss/taxonomy.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::RSS10 - Included

ELEMENTS, NSPOOL

Class Attribute Summary

Class Method Summary

::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.

new_with_value_if_need

If value is an instance of class klass, return it, else create a new instance of klass with value value.

to_class_name

Given a name in a name_with_underscores or a name-with-dashes format, returns the CamelCase version of name.

Instance Attribute Summary

Instance Method Summary

Constructor Details

.new(*args) ⇒ TaxonomyTopics

[ GitHub ]

  
# File 'lib/rss/taxonomy.rb', line 61

def initialize(*args)
  if Utils.element_initialize_arguments?(args)
    super
  else
    super()
    self.Bag = args[0]
  end
  self.Bag ||= Bag.new
end

Class Method Details

.required_prefix

[ GitHub ]

  
# File 'lib/rss/taxonomy.rb', line 47

def required_prefix
  TAXO_PREFIX
end

.required_uri

[ GitHub ]

  
# File 'lib/rss/taxonomy.rb', line 51

def required_uri
  TAXO_URI
end

Instance Method Details

#full_name

[ GitHub ]

  
# File 'lib/rss/taxonomy.rb', line 71

def full_name
  tag_name_with_prefix(TAXO_PREFIX)
end

#maker_target(target)

[ GitHub ]

  
# File 'lib/rss/taxonomy.rb', line 75

def maker_target(target)
  target.taxo_topics
end

#resources

[ GitHub ]

  
# File 'lib/rss/taxonomy.rb', line 79

def resources
  if @Bag
    @Bag.lis.collect do |li|
      li.resource
    end
  else
    []
  end
end