├── .editorconfig ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── README.md ├── shard.yml ├── spec ├── paginator_spec.cr ├── sitemapper_builder_spec.cr ├── sitemapper_ping_bot_spec.cr ├── sitemapper_spec.cr ├── sitemapper_storage_spec.cr └── spec_helper.cr └── src ├── sitemapper.cr └── sitemapper ├── aws_storage_config.cr ├── builder.cr ├── errors.cr ├── image_map.cr ├── paginator.cr ├── ping_bot.cr ├── sitemap_options.cr ├── storage.cr ├── storage ├── aws_storage.cr └── local_storage.cr ├── streamer.cr └── video_map.cr /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoertink/sitemapper/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoertink/sitemapper/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoertink/sitemapper/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoertink/sitemapper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoertink/sitemapper/HEAD/README.md -------------------------------------------------------------------------------- /shard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoertink/sitemapper/HEAD/shard.yml -------------------------------------------------------------------------------- /spec/paginator_spec.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoertink/sitemapper/HEAD/spec/paginator_spec.cr -------------------------------------------------------------------------------- /spec/sitemapper_builder_spec.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoertink/sitemapper/HEAD/spec/sitemapper_builder_spec.cr -------------------------------------------------------------------------------- /spec/sitemapper_ping_bot_spec.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoertink/sitemapper/HEAD/spec/sitemapper_ping_bot_spec.cr -------------------------------------------------------------------------------- /spec/sitemapper_spec.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoertink/sitemapper/HEAD/spec/sitemapper_spec.cr -------------------------------------------------------------------------------- /spec/sitemapper_storage_spec.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoertink/sitemapper/HEAD/spec/sitemapper_storage_spec.cr -------------------------------------------------------------------------------- /spec/spec_helper.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoertink/sitemapper/HEAD/spec/spec_helper.cr -------------------------------------------------------------------------------- /src/sitemapper.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoertink/sitemapper/HEAD/src/sitemapper.cr -------------------------------------------------------------------------------- /src/sitemapper/aws_storage_config.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoertink/sitemapper/HEAD/src/sitemapper/aws_storage_config.cr -------------------------------------------------------------------------------- /src/sitemapper/builder.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoertink/sitemapper/HEAD/src/sitemapper/builder.cr -------------------------------------------------------------------------------- /src/sitemapper/errors.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoertink/sitemapper/HEAD/src/sitemapper/errors.cr -------------------------------------------------------------------------------- /src/sitemapper/image_map.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoertink/sitemapper/HEAD/src/sitemapper/image_map.cr -------------------------------------------------------------------------------- /src/sitemapper/paginator.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoertink/sitemapper/HEAD/src/sitemapper/paginator.cr -------------------------------------------------------------------------------- /src/sitemapper/ping_bot.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoertink/sitemapper/HEAD/src/sitemapper/ping_bot.cr -------------------------------------------------------------------------------- /src/sitemapper/sitemap_options.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoertink/sitemapper/HEAD/src/sitemapper/sitemap_options.cr -------------------------------------------------------------------------------- /src/sitemapper/storage.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoertink/sitemapper/HEAD/src/sitemapper/storage.cr -------------------------------------------------------------------------------- /src/sitemapper/storage/aws_storage.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoertink/sitemapper/HEAD/src/sitemapper/storage/aws_storage.cr -------------------------------------------------------------------------------- /src/sitemapper/storage/local_storage.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoertink/sitemapper/HEAD/src/sitemapper/storage/local_storage.cr -------------------------------------------------------------------------------- /src/sitemapper/streamer.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoertink/sitemapper/HEAD/src/sitemapper/streamer.cr -------------------------------------------------------------------------------- /src/sitemapper/video_map.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwoertink/sitemapper/HEAD/src/sitemapper/video_map.cr --------------------------------------------------------------------------------