Sha256: e88e462e60a153d8e2fdf4b2a770d9920a2efa017ac499d0ff010e0de09dc348

Contents?: true

Size: 444 Bytes

Versions: 3

Compression:

Stored size: 444 Bytes

Contents

# frozen_string_literal: true

require "forwardable"

module Runcom
  # A developer friendly wrapper of XDG config.
  class Config
    extend Forwardable

    CONTEXT = Context.new xdg: XDG::Config

    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/config.rb
runcom-10.2.0 lib/runcom/config.rb
runcom-10.1.0 lib/runcom/config.rb