Class: SolidStorage::File

Inherits:
Record
  • Object
show all
Defined in:
app/models/solid_storage/file.rb

Instance Method Summary collapse

Instance Method Details

#ioObject



13
14
15
# File 'app/models/solid_storage/file.rb', line 13

def io
  StringIO.new(data)
end

#tempfileObject



5
6
7
8
9
10
11
# File 'app/models/solid_storage/file.rb', line 5

def tempfile
  @tempfile ||= Tempfile.new.tap do |file|
    file.binmode
    file.write(data)
    file.rewind
  end
end