module Exclaim::Implementations

Constants

EACH_COMPONENT
IF_HELPER
IMAGE_COMPONENT
INDENT
JOIN_HELPER
LET_COMPONENT
PARAGRAPH_COMPONENT
TEXT_COMPONENT
VBOX_COMPONENT

Public Instance Methods

example_implementation_map() click to toggle source
# File lib/exclaim/implementations/example_implementation_map.rb, line 16
def example_implementation_map
  @example_implementation_map ||= begin
    {
      'each' => EACH_COMPONENT,
      'image' => IMAGE_COMPONENT,
      'if' => IF_HELPER,
      'join' => JOIN_HELPER,
      'let' => LET_COMPONENT,
      'paragraph' => PARAGRAPH_COMPONENT,
      'text' => TEXT_COMPONENT,
      'vbox' => VBOX_COMPONENT
    }
  end
end