Sha256: 3a070c41de9b1f4fc8e34de44de461bca03e9c4b395485037214fdae817e73c4
Contents?: true
Size: 445 Bytes
Versions: 16
Compression:
Stored size: 445 Bytes
Contents
# frozen_string_literal: true require "forwardable" module Runcom # A developer friendly wrapper of XDG cache. class Cache extend Forwardable DEFAULT_CONTEXT = Context.new xdg: XDG::Cache delegate %i[relative namespace file_name current all inspect] => :common def initialize path, context: DEFAULT_CONTEXT @common = Paths::Common.new path, context: context end private attr_reader :common end end
Version data entries
16 entries across 16 versions & 1 rubygems