├── LICENSE ├── README.md └── bin ├── compile ├── detect └── release /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbeynon/heroku-buildpack-swift/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbeynon/heroku-buildpack-swift/HEAD/README.md -------------------------------------------------------------------------------- /bin/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbeynon/heroku-buildpack-swift/HEAD/bin/compile -------------------------------------------------------------------------------- /bin/detect: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | echo "Swift" && exit 0 4 | -------------------------------------------------------------------------------- /bin/release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnbeynon/heroku-buildpack-swift/HEAD/bin/release --------------------------------------------------------------------------------