Sha256: fd79f31f9cdb3f90951f33940f46f2290055f486d7e89ff98688981d18e27b81

Contents?: true

Size: 438 Bytes

Versions: 3

Compression:

Stored size: 438 Bytes

Contents

# frozen_string_literal: true

require "forwardable"

module Runcom
  # A developer friendly wrapper of XDG data.
  class Data
    extend Forwardable

    CONTEXT = Context.new xdg: XDG::Data

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