├── .editorconfig ├── .github └── workflows │ └── docs.yml ├── .gitignore ├── LICENSE ├── README.md ├── shard.yml ├── spec ├── downloader_spec.cr └── spec_helper.cr └── src └── downloader.cr /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crystal-libs/downloader/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crystal-libs/downloader/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crystal-libs/downloader/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crystal-libs/downloader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crystal-libs/downloader/HEAD/README.md -------------------------------------------------------------------------------- /shard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crystal-libs/downloader/HEAD/shard.yml -------------------------------------------------------------------------------- /spec/downloader_spec.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crystal-libs/downloader/HEAD/spec/downloader_spec.cr -------------------------------------------------------------------------------- /spec/spec_helper.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crystal-libs/downloader/HEAD/spec/spec_helper.cr -------------------------------------------------------------------------------- /src/downloader.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crystal-libs/downloader/HEAD/src/downloader.cr --------------------------------------------------------------------------------