Sha256: b57b5ae3dcf43b0d0d838f1e0a44efac34273d5bfa820d828c943798483bd5bb
Contents?: true
Size: 300 Bytes
Versions: 35
Compression:
Stored size: 300 Bytes
Contents
# frozen_string_literal: true module Grumlin class Path attr_reader :objects def initialize(path) @labels = Typing.cast(path[:labels]) @objects = Typing.cast(path[:objects]) end def inspect "p[#{@objects}]" end def to_s inspect end end end
Version data entries
35 entries across 35 versions & 1 rubygems