Class: Sevgi::Graphics::Document::Base
- Defined in:
- lib/sevgi/graphics/document/base.rb
Overview
Standard document profile with the full common DSL mixture set.
Direct Known Subclasses
Constant Summary
Constants inherited from Element
Instance Attribute Summary
Attributes inherited from Element
#attributes, #children, #contents, #name, #parent
Instance Method Summary collapse
-
#PreRender(**options) ⇒ void
Runs pre-render validation and lint checks.
Methods inherited from Proto
Methods inherited from Element
element, #initialize, #method_missing, #respond_to_missing?, root, root?
Methods included from Element::Ident
Constructor Details
This class inherits a constructor from Sevgi::Graphics::Element
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class Sevgi::Graphics::Element
Instance Method Details
#PreRender(**options) ⇒ void
This method returns an undefined value.
Runs pre-render validation and lint checks.
27 28 29 30 |
# File 'lib/sevgi/graphics/document/base.rb', line 27 def PreRender(**) self.Validate() if [:validate] self.Lint() if [:lint] end |