Sha256: 9a3569542358054c9234be5f575c88311a8189b61b8f8690dab5bf390f17779e
Contents?: true
Size: 1.23 KB
Versions: 9
Compression:
Stored size: 1.23 KB
Contents
require 'fog/core/model' module Fog module Local class Storage class File < Fog::Model identity :key, :aliases => 'Key' attr_writer :body attribute :content_length, :aliases => 'Content-Length' # attribute :content_type, :aliases => 'Content-Type' attribute :last_modified, :aliases => 'Last-Modified' def body @body ||= if last_modified collection.get(identity).body else '' end end def directory @directory end def destroy requires :directory, :key ::File.delete(path) true end def save(options = {}) requires :body, :directory, :key file = ::File.new(path, 'w') file.write(body) file.close merge_attributes( :content_length => ::File.size(path), :last_modified => ::File.mtime(path) ) true end private def directory=(new_directory) @directory = new_directory end def path connection.path_to(::File.join(directory.key, key)) end end end end end
Version data entries
9 entries across 9 versions & 1 rubygems