├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── bin ├── compile ├── detect └── release └── support ├── aws ├── hmac └── s3 ├── manifest ├── package └── package_stunnel /.gitignore: -------------------------------------------------------------------------------- 1 | .anvil 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshadel/heroku-buildpack-stunnel/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshadel/heroku-buildpack-stunnel/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshadel/heroku-buildpack-stunnel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshadel/heroku-buildpack-stunnel/HEAD/README.md -------------------------------------------------------------------------------- /bin/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshadel/heroku-buildpack-stunnel/HEAD/bin/compile -------------------------------------------------------------------------------- /bin/detect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshadel/heroku-buildpack-stunnel/HEAD/bin/detect -------------------------------------------------------------------------------- /bin/release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshadel/heroku-buildpack-stunnel/HEAD/bin/release -------------------------------------------------------------------------------- /support/aws/hmac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshadel/heroku-buildpack-stunnel/HEAD/support/aws/hmac -------------------------------------------------------------------------------- /support/aws/s3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshadel/heroku-buildpack-stunnel/HEAD/support/aws/s3 -------------------------------------------------------------------------------- /support/manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshadel/heroku-buildpack-stunnel/HEAD/support/manifest -------------------------------------------------------------------------------- /support/package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshadel/heroku-buildpack-stunnel/HEAD/support/package -------------------------------------------------------------------------------- /support/package_stunnel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshadel/heroku-buildpack-stunnel/HEAD/support/package_stunnel --------------------------------------------------------------------------------