├── .gitignore ├── .travis.yml ├── LICENSE ├── README.markdown ├── example.policy ├── project.clj ├── src └── clojail │ ├── core.clj │ ├── jvm.clj │ └── testers.clj └── test ├── clojail └── core_test.clj └── test.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raynes/clojail/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raynes/clojail/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raynes/clojail/HEAD/LICENSE -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raynes/clojail/HEAD/README.markdown -------------------------------------------------------------------------------- /example.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raynes/clojail/HEAD/example.policy -------------------------------------------------------------------------------- /project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raynes/clojail/HEAD/project.clj -------------------------------------------------------------------------------- /src/clojail/core.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raynes/clojail/HEAD/src/clojail/core.clj -------------------------------------------------------------------------------- /src/clojail/jvm.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raynes/clojail/HEAD/src/clojail/jvm.clj -------------------------------------------------------------------------------- /src/clojail/testers.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raynes/clojail/HEAD/src/clojail/testers.clj -------------------------------------------------------------------------------- /test/clojail/core_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raynes/clojail/HEAD/test/clojail/core_test.clj -------------------------------------------------------------------------------- /test/test.txt: -------------------------------------------------------------------------------- 1 | foo 2 | --------------------------------------------------------------------------------