From b02095fd7f1133b9b531d259811d97aa6df5719f Mon Sep 17 00:00:00 2001 From: Eric Lavigne Date: Mon, 8 Feb 2010 10:20:49 +0800 Subject: [PATCH] Added leiningen-run to the project. Now you can run it with: lein run --- project.clj | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/project.clj b/project.clj index c4a7634..a9c3fa2 100644 --- a/project.clj +++ b/project.clj @@ -1,7 +1,9 @@ (defproject functional-koans "0.0.1" :description "The functional koans" + :script "koans/path_to_enlightenment.clj" :dependencies [[org.clojure/clojure "1.1.0"] [org.clojure/clojure-contrib "1.0-SNAPSHOT"] [jline "0.9.94"]] - :dev-dependencies [[lein-clojars "0.5.0-SNAPSHOT"]] - :namespaces [koans]) \ No newline at end of file + :dev-dependencies [[lein-clojars "0.5.0-SNAPSHOT"] + [leiningen-run "0.3"]] + :namespaces [koans])