├── .circleci └── config.yml ├── .editorconfig ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── project.clj ├── src └── rop │ └── core.clj └── test └── rop └── core_test.clj /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/druids/rop/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/druids/rop/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/druids/rop/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/druids/rop/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/druids/rop/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/druids/rop/HEAD/README.md -------------------------------------------------------------------------------- /project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/druids/rop/HEAD/project.clj -------------------------------------------------------------------------------- /src/rop/core.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/druids/rop/HEAD/src/rop/core.clj -------------------------------------------------------------------------------- /test/rop/core_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/druids/rop/HEAD/test/rop/core_test.clj --------------------------------------------------------------------------------