Sha256: 2604853612d22d2e9954fa3b7219464aa48ec02576ce53bd82d698caaf656d03
Contents?: true
Size: 772 Bytes
Versions: 2
Compression:
Stored size: 772 Bytes
Contents
# frozen_string_literal: true require_relative 'each_component' require_relative 'image_component' require_relative 'if_helper' require_relative 'join_helper' require_relative 'let_component' require_relative 'paragraph_component' require_relative 'text_component' require_relative 'vbox_component' module Exclaim module Implementations extend self 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 end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ruby-exclaim-0.1.0 | lib/exclaim/implementations/example_implementation_map.rb |
ruby-exclaim-0.0.0 | lib/exclaim/implementations/example_implementation_map.rb |