clojure-koans/project.clj
David Kinzer 244c30fdaa Invoke the koan-engine ns initializer.
The idea behind this is to clean-up the repl initialization as proposed
in pull request #68 such that it's taken care of in a back compatible
way from the koans-engine project.
2014-01-28 00:12:39 -05:00

12 lines
448 B
Clojure

(defproject clojure-koans "0.5.0-SNAPSHOT"
:description "The Clojure koans."
:dependencies [[org.clojure/clojure "1.5.1"]
[koan-engine "0.2.0"]]
:dev-dependencies [[lein-koan "0.1.2"]]
:profiles {:dev {:dependencies [[lein-koan "0.1.2"]]}}
:repl-options {
:init-ns koan-engine.repl
:init (do-ns-koans)
}
:plugins [[lein-koan "0.1.2"]]
:main koan-engine.runner/exec)