Skip to content

Commit

Permalink
Fixed json parsin deps
Browse files Browse the repository at this point in the history
  • Loading branch information
skuro committed Nov 12, 2012
1 parent 5aedabe commit 6fd429c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
3 changes: 1 addition & 2 deletions project.clj
Expand Up @@ -4,9 +4,8 @@
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[misaki "0.2.3-beta"]
[gh-file-reader "0.0.2"]
[gh-file-reader "0.0.3"]
[clj-text-decoration "0.0.1"]
[compojure "1.1.3"]
[org.clojure/data.json "0.2.0"]
[ring/ring-jetty-adapter "1.1.0"]]
:eval-in-leiningen true)
5 changes: 1 addition & 4 deletions src/leiningen/misaki.clj
Expand Up @@ -24,13 +24,10 @@
project-name)
(println (td/red (str "Template '" template-name "' is not found"))))))

(defn misaki-github-listener [destdir branch]
(github/listen destdir branch))

(defn ^:no-project-needed misaki
"Compiles your Misaki sources and starts a local server"
[project & args]
(case (first args)
"new" (apply misaki-new (rest args))
"listen" (apply misaki-github-listener (rest args))
"listen" (apply github/listen (rest args))
(apply -main (get-current-directory) args)))

0 comments on commit 6fd429c

Please sign in to comment.