Sha256: 252dcccca7e04d6dd48841eeed04324f5ac266881e098e33415d908c71735b31
Contents?: true
Size: 1.19 KB
Versions: 4
Compression:
Stored size: 1.19 KB
Contents
module Tori module Backend class FileSystem attr_accessor :root def initialize(root) @root = root FileUtils.mkdir_p @root.to_s end def write(filename, resource, opts = nil) case resource when String ::File.open(path(filename), 'wb'){ |f| f.write resource } when Pathname # see also https://bugs.ruby-lang.org/issues/11199 ::File.open(resource) { |src| FileUtils.mkdir_p path(filename).dirname ::File.open(path(filename), 'wb'){ |dst| ::IO.copy_stream src, dst } } else ::File.open(path(filename), 'wb') do |dst| ::IO.copy_stream resource, dst end end end def delete(filename) ::File.unlink path(filename) end def exist?(filename) ::File.exist? path(filename) end alias exists? exist? def read(filename) ::File.read(path(filename), mode: 'rb') end def open(filename, *rest, &block) ::File.open(path(filename), *rest, &block) end def path(filename) @root.join filename.to_s end end end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
tori-0.6.3 | lib/tori/backend/filesystem.rb |
tori-0.6.2 | lib/tori/backend/filesystem.rb |
tori-0.6.1 | lib/tori/backend/filesystem.rb |
tori-0.6.0 | lib/tori/backend/filesystem.rb |