Module: Shrine::Plugins::Tempfile::FileMethods
- Defined in:
- lib/shrine/plugins/tempfile.rb
Instance Method Summary collapse
Instance Method Details
#close ⇒ Object
27 28 29 30 31 32 |
# File 'lib/shrine/plugins/tempfile.rb', line 27 def close super @tempfile.close! if @tempfile @tempfile = nil end |
#tempfile ⇒ Object
21 22 23 24 25 |
# File 'lib/shrine/plugins/tempfile.rb', line 21 def tempfile @tempfile ||= download @tempfile.rewind @tempfile end |