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.
This commit is contained in:
David Kinzer 2014-01-27 10:38:30 -05:00
parent 00b7e7c69f
commit 244c30fdaa

View file

@ -4,6 +4,9 @@
[koan-engine "0.2.0"]]
:dev-dependencies [[lein-koan "0.1.2"]]
:profiles {:dev {:dependencies [[lein-koan "0.1.2"]]}}
:repl-options {:init-ns user}
:repl-options {
:init-ns koan-engine.repl
:init (do-ns-koans)
}
:plugins [[lein-koan "0.1.2"]]
:main koan-engine.runner/exec)