Sha256: 8c2ac4373fb54d1f5c96ef01150c4e4f72ba5329eeb37bee80b4798acc486363
Contents?: true
Size: 541 Bytes
Versions: 13
Compression:
Stored size: 541 Bytes
Contents
module Eco module API class SessionConfig class Files < Hash def initialize(root:) super(nil) @root = root end def working_directory=(path) self["dir"] = path end def working_directory self["dir"] end def timestamp_pattern=(pattern) self["timestamp_pattern"] = pattern end def timestamp_pattern self["timestamp_pattern"] end end end end end
Version data entries
13 entries across 13 versions & 1 rubygems