├── .gitignore ├── README.textile ├── commands.py ├── conf ├── dependencies.yml ├── messages └── routes ├── documentation └── manual │ └── home.textile ├── lib ├── cloudfoundry-runtime-0.8.1.jar ├── play-cloudfoundry-0.5.jar └── postgresql-9.0-801.jdbc4.jar └── src ├── play.plugins └── play └── modules └── cloudfoundry └── CloudFoundryDBPlugin.java /.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | commands.pyc 3 | .classpath 4 | .project 5 | -------------------------------------------------------------------------------- /README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcourtine/play--cloudfondry/HEAD/README.textile -------------------------------------------------------------------------------- /commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcourtine/play--cloudfondry/HEAD/commands.py -------------------------------------------------------------------------------- /conf/dependencies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcourtine/play--cloudfondry/HEAD/conf/dependencies.yml -------------------------------------------------------------------------------- /conf/messages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcourtine/play--cloudfondry/HEAD/conf/messages -------------------------------------------------------------------------------- /conf/routes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcourtine/play--cloudfondry/HEAD/conf/routes -------------------------------------------------------------------------------- /documentation/manual/home.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcourtine/play--cloudfondry/HEAD/documentation/manual/home.textile -------------------------------------------------------------------------------- /lib/cloudfoundry-runtime-0.8.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcourtine/play--cloudfondry/HEAD/lib/cloudfoundry-runtime-0.8.1.jar -------------------------------------------------------------------------------- /lib/play-cloudfoundry-0.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcourtine/play--cloudfondry/HEAD/lib/play-cloudfoundry-0.5.jar -------------------------------------------------------------------------------- /lib/postgresql-9.0-801.jdbc4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcourtine/play--cloudfondry/HEAD/lib/postgresql-9.0-801.jdbc4.jar -------------------------------------------------------------------------------- /src/play.plugins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcourtine/play--cloudfondry/HEAD/src/play.plugins -------------------------------------------------------------------------------- /src/play/modules/cloudfoundry/CloudFoundryDBPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcourtine/play--cloudfondry/HEAD/src/play/modules/cloudfoundry/CloudFoundryDBPlugin.java --------------------------------------------------------------------------------