class ActiveStorage::Service::GCSService

def download(key)

FIXME: Download in chunks when given a block.
def download(key)
  instrument :download, key do
    io = file_for(key).download
    io.rewind
    if block_given?
      yield io.read
    else
      io.read
    end
  end
end