method

open_tempfile_for_drawing

rails latest stable - Class: ActiveStorage::Previewer

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v5.2.3) is shown here.

open_tempfile_for_drawing()
private

No documentation available.

# File activestorage/lib/active_storage/previewer.rb, line 54
      def open_tempfile_for_drawing
        tempfile = Tempfile.open("ActiveStorage", tempdir)

        begin
          yield tempfile
        ensure
          tempfile.close!
        end
      end