Sha256: db893d532c34de9d3c72fab6086e0aa588ed0cd6e2cfb95d186185406479263d
Contents?: true
Size: 505 Bytes
Versions: 11
Compression:
Stored size: 505 Bytes
Contents
# frozen_string_literal: true require "forwardable" module Runcom # A developer friendly wrapper of XDG cache. class Cache extend Forwardable CONTEXT = Context.new xdg: XDG::Cache delegate %i[initial namespace file_name active passive global local all to_s to_str] => :common def initialize path, context: CONTEXT @common = Paths::Common.new path, context: end def inspect = "#<#{self.class}:#{object_id} #{common}>" private attr_reader :common end end
Version data entries
11 entries across 11 versions & 1 rubygems