module Shrine::Plugins::Tempfile::FileMethods
Public Instance Methods
Source
# File lib/shrine/plugins/tempfile.rb 27 def close 28 super 29 30 @tempfile.close! if @tempfile 31 @tempfile = nil 32 end
Calls superclass method
Source
# File lib/shrine/plugins/tempfile.rb 21 def tempfile 22 @tempfile ||= download 23 @tempfile.rewind 24 @tempfile 25 end