├── .gitignore ├── .midje-grading-config.clj ├── .travis.yml ├── README.md ├── project.clj ├── src └── i_am_a_horse_in_the_land_of_booleans.clj └── test └── i_am_a_horse_in_the_land_of_booleans_test.clj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iloveponies/i-am-a-horse-in-the-land-of-booleans/HEAD/.gitignore -------------------------------------------------------------------------------- /.midje-grading-config.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iloveponies/i-am-a-horse-in-the-land-of-booleans/HEAD/.midje-grading-config.clj -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iloveponies/i-am-a-horse-in-the-land-of-booleans/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iloveponies/i-am-a-horse-in-the-land-of-booleans/HEAD/README.md -------------------------------------------------------------------------------- /project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iloveponies/i-am-a-horse-in-the-land-of-booleans/HEAD/project.clj -------------------------------------------------------------------------------- /src/i_am_a_horse_in_the_land_of_booleans.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iloveponies/i-am-a-horse-in-the-land-of-booleans/HEAD/src/i_am_a_horse_in_the_land_of_booleans.clj -------------------------------------------------------------------------------- /test/i_am_a_horse_in_the_land_of_booleans_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iloveponies/i-am-a-horse-in-the-land-of-booleans/HEAD/test/i_am_a_horse_in_the_land_of_booleans_test.clj --------------------------------------------------------------------------------