Sha256: bc658322dba8df35fc78129dda3fb2c69ad5b90946b1730253207cba48141ebd

Contents?: true

Size: 441 Bytes

Versions: 3

Compression:

Stored size: 441 Bytes

Contents

# frozen_string_literal: true

require "forwardable"

module Runcom
  # A developer friendly wrapper of XDG state.
  class State
    extend Forwardable

    CONTEXT = Context.new xdg: XDG::State

    delegate %i[relative namespace file_name active passive global local all inspect] => :common

    def initialize path, context: CONTEXT
      @common = Paths::Common.new path, context:
    end

    private

    attr_reader :common
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
runcom-10.2.1 lib/runcom/state.rb
runcom-10.2.0 lib/runcom/state.rb
runcom-10.1.0 lib/runcom/state.rb