Module: Pageflow::LinkmapPage::PaperclipTempfile

Defined in:
lib/pageflow/linkmap_page/paperclip_tempfile.rb

Class Method Summary collapse

Class Method Details

.for(attachment) ⇒ Object



6
7
8
9
10
11
12
13
14
15
# File 'lib/pageflow/linkmap_page/paperclip_tempfile.rb', line 6

def for(attachment)
  tempfile = Paperclip.io_adapters.for(attachment)

  begin
    yield(tempfile.path)
  ensure
    tempfile.close
    tempfile.unlink
  end
end