├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.adoc ├── boot.properties ├── src └── skip │ ├── aero.clj │ ├── core.clj │ ├── file_watcher.clj │ └── notify.clj └── test └── skip └── core_test.clj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juxt/skip/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juxt/skip/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juxt/skip/HEAD/LICENSE -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juxt/skip/HEAD/README.adoc -------------------------------------------------------------------------------- /boot.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juxt/skip/HEAD/boot.properties -------------------------------------------------------------------------------- /src/skip/aero.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juxt/skip/HEAD/src/skip/aero.clj -------------------------------------------------------------------------------- /src/skip/core.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juxt/skip/HEAD/src/skip/core.clj -------------------------------------------------------------------------------- /src/skip/file_watcher.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juxt/skip/HEAD/src/skip/file_watcher.clj -------------------------------------------------------------------------------- /src/skip/notify.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juxt/skip/HEAD/src/skip/notify.clj -------------------------------------------------------------------------------- /test/skip/core_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juxt/skip/HEAD/test/skip/core_test.clj --------------------------------------------------------------------------------