Sha256: 568914616d168ed763cf7760101a9316158e4cbc472d17e07d58075e34e05e2d
Contents?: true
Size: 321 Bytes
Versions: 1
Compression:
Stored size: 321 Bytes
Contents
# 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 end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
stashify-3.0.0 | lib/stashify/file/local.rb |