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

Version Path
eco-helpers-0.6.13 lib/eco/api/session_config/files.rb
eco-helpers-0.6.12 lib/eco/api/session_config/files.rb
eco-helpers-0.6.11 lib/eco/api/session_config/files.rb
eco-helpers-0.6.9 lib/eco/api/session_config/files.rb
eco-helpers-0.6.8 lib/eco/api/session_config/files.rb
eco-helpers-0.6.7 lib/eco/api/session_config/files.rb
eco-helpers-0.6.6 lib/eco/api/session_config/files.rb
eco-helpers-0.6.5 lib/eco/api/session_config/files.rb
eco-helpers-0.6.4 lib/eco/api/session_config/files.rb
eco-helpers-0.6.3 lib/eco/api/session_config/files.rb
eco-helpers-0.6.2 lib/eco/api/session_config/files.rb
eco-helpers-0.6.1 lib/eco/api/session_config/files.rb
eco-helpers-0.6.0 lib/eco/api/session_config/files.rb