download(key)
FIXME: Download in chunks when given a block.
# File activestorage/lib/active_storage/service/gcs_service.rb, line 43 def download(key) instrument :download, key: key do io = file_for(key).download io.rewind if block_given? yield io.string else io.string end end end