method

download

rails latest stable - Class: ActiveStorage::Downloader
download(key, file)
private

No documentation available.

# File activestorage/lib/active_storage/downloader.rb, line 30
      def download(key, file)
        file.binmode
        service.download(key) { |chunk| file.write(chunk) }
        file.flush
        file.rewind
      end