Sha256: f35bb0a09604a56dfdb3889a8aa8f18d0b7d88935c4892b45c2a6660dfcd1ae6

Contents?: true

Size: 496 Bytes

Versions: 1

Compression:

Stored size: 496 Bytes

Contents

# frozen_string_literal: true

module Tataru
  # base representation
  class Representation
    attr_reader :value

    def initialize(value)
      @value = value
    end

    def dependencies
      []
    end
  end
end

require 'tataru/representations/hash_representation'
require 'tataru/representations/array_representation'
require 'tataru/representations/literal_representation'
require 'tataru/representations/output_representation'
require 'tataru/representations/resource_representation'

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
tataru-0.2.0 lib/tataru/representation.rb