├── .gitignore ├── .swift-version ├── .travis.yml ├── LICENSE ├── Package.swift ├── README.md ├── Sources └── gzip-vapor │ ├── GzipMiddleware.swift │ └── GzipStream.swift └── Tests ├── LinuxMain.swift └── gzip-vaporTests └── gzipTests.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor-community/gzip-provider/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | DEVELOPMENT-SNAPSHOT-2016-08-18-a 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor-community/gzip-provider/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor-community/gzip-provider/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor-community/gzip-provider/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor-community/gzip-provider/HEAD/README.md -------------------------------------------------------------------------------- /Sources/gzip-vapor/GzipMiddleware.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor-community/gzip-provider/HEAD/Sources/gzip-vapor/GzipMiddleware.swift -------------------------------------------------------------------------------- /Sources/gzip-vapor/GzipStream.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor-community/gzip-provider/HEAD/Sources/gzip-vapor/GzipStream.swift -------------------------------------------------------------------------------- /Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor-community/gzip-provider/HEAD/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Tests/gzip-vaporTests/gzipTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor-community/gzip-provider/HEAD/Tests/gzip-vaporTests/gzipTests.swift --------------------------------------------------------------------------------