# frozen_string_literal: true require "stashify/file" module Stashify class File class Local < Stashify::File def contents ::File.read(path) end def write(contents) ::File.write(path, contents) end def delete ::File.delete(path) end def exists? ::File.exist?(path) end end end end