Class: Occi::Core::Renderers::Text::Model
- Defined in:
- lib/occi/core/renderers/text/model.rb
Overview
Implements methods needed to render model instances to text-based renderings. This class (its instances) is usually called directly from the “outside”. It utilizes ‘Category` from this module to render kinds, actions, and mixins.
Direct Known Subclasses
Constant Summary
Constants inherited from Base
Base::DELEGATED, Base::RENDER_SAFE
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
-
#render_headers ⇒ Hash
Renders ‘object` into text for headers and returns the result as `Hash`.
-
#render_plain ⇒ String
Renders ‘object` into plain text and returns the result as `String`.
Methods inherited from Base
#initialize, #render, #render_safe, render_safe
Constructor Details
This class inherits a constructor from Occi::Core::Renderers::Text::Base
Instance Method Details
#render_headers ⇒ Hash
Renders ‘object` into text for headers and returns the result as `Hash`.
28 29 30 31 32 33 34 35 36 |
# File 'lib/occi/core/renderers/text/model.rb', line 28 def render_headers rcats = { Category.category_key_headers => [] } object.categories.each do |cat| rcats[Category.category_key_headers].concat( Category.new(cat, ).render[Category.category_key_headers] ) end rcats end |