├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── apt ├── favicon.ico ├── index.html └── staging │ └── index.html ├── ci ├── pipeline.yml ├── rebuild-all-debian-packages ├── repipe ├── scripts │ ├── create-debian-pkg-from-binary.sh │ ├── generate-public-key.sh │ └── update-homebrew.sh └── settings.yml ├── eden.rb ├── fissile.rb ├── genesis.rb ├── gotcha.rb ├── govc.rb ├── kafka-service-broker.rb ├── om.rb ├── public.key ├── quaa.rb ├── riff.rb ├── safe.rb ├── shield.rb ├── spruce.rb ├── uaa-cli.rb └── yj.rb /.gitignore: -------------------------------------------------------------------------------- 1 | tmp 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/homebrew-cf/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/homebrew-cf/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/homebrew-cf/HEAD/README.md -------------------------------------------------------------------------------- /apt/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/homebrew-cf/HEAD/apt/favicon.ico -------------------------------------------------------------------------------- /apt/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/homebrew-cf/HEAD/apt/index.html -------------------------------------------------------------------------------- /apt/staging/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/homebrew-cf/HEAD/apt/staging/index.html -------------------------------------------------------------------------------- /ci/pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/homebrew-cf/HEAD/ci/pipeline.yml -------------------------------------------------------------------------------- /ci/rebuild-all-debian-packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/homebrew-cf/HEAD/ci/rebuild-all-debian-packages -------------------------------------------------------------------------------- /ci/repipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/homebrew-cf/HEAD/ci/repipe -------------------------------------------------------------------------------- /ci/scripts/create-debian-pkg-from-binary.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/homebrew-cf/HEAD/ci/scripts/create-debian-pkg-from-binary.sh -------------------------------------------------------------------------------- /ci/scripts/generate-public-key.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/homebrew-cf/HEAD/ci/scripts/generate-public-key.sh -------------------------------------------------------------------------------- /ci/scripts/update-homebrew.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/homebrew-cf/HEAD/ci/scripts/update-homebrew.sh -------------------------------------------------------------------------------- /ci/settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/homebrew-cf/HEAD/ci/settings.yml -------------------------------------------------------------------------------- /eden.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/homebrew-cf/HEAD/eden.rb -------------------------------------------------------------------------------- /fissile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/homebrew-cf/HEAD/fissile.rb -------------------------------------------------------------------------------- /genesis.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/homebrew-cf/HEAD/genesis.rb -------------------------------------------------------------------------------- /gotcha.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/homebrew-cf/HEAD/gotcha.rb -------------------------------------------------------------------------------- /govc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/homebrew-cf/HEAD/govc.rb -------------------------------------------------------------------------------- /kafka-service-broker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/homebrew-cf/HEAD/kafka-service-broker.rb -------------------------------------------------------------------------------- /om.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/homebrew-cf/HEAD/om.rb -------------------------------------------------------------------------------- /public.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/homebrew-cf/HEAD/public.key -------------------------------------------------------------------------------- /quaa.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/homebrew-cf/HEAD/quaa.rb -------------------------------------------------------------------------------- /riff.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/homebrew-cf/HEAD/riff.rb -------------------------------------------------------------------------------- /safe.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/homebrew-cf/HEAD/safe.rb -------------------------------------------------------------------------------- /shield.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/homebrew-cf/HEAD/shield.rb -------------------------------------------------------------------------------- /spruce.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/homebrew-cf/HEAD/spruce.rb -------------------------------------------------------------------------------- /uaa-cli.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/homebrew-cf/HEAD/uaa-cli.rb -------------------------------------------------------------------------------- /yj.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/homebrew-cf/HEAD/yj.rb --------------------------------------------------------------------------------