class Bogo::EphemeralFile

Tempfile that will destroy itself when closed

Public Instance Methods

close() click to toggle source

Override to remove file after close

Calls superclass method
# File lib/bogo/ephemeral_file.rb, line 9
def close
  super
  delete
end