Sha256: a94b16ab7275d5f8d9225e1bf18c02cf4c44781d864b04bf99fb0da6def3c9ff

Contents?: true

Size: 602 Bytes

Versions: 3

Compression:

Stored size: 602 Bytes

Contents

module Eco
  module API
    class Session
      class Config
        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
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
eco-helpers-0.6.17 lib/eco/api/session/config/files.rb
eco-helpers-0.6.16 lib/eco/api/session/config/files.rb
eco-helpers-0.6.15 lib/eco/api/session/config/files.rb