diff --git a/README.md b/README.md --- a/README.md +++ b/README.md @@ -8,13 +8,9 @@ ## Usage -Run the issue: - - $ java -jar project-checkup-0.1.2-standalone.jar [args] +Run the app in the current working directory: -## Options - -FIXME: listing of options this app accepts. + $ java -jar project-checkup-0.1.2-standalone.jar ## License diff --git a/project.clj b/project.clj --- a/project.clj +++ b/project.clj @@ -1,13 +1,12 @@ -(defproject project-checkup "0.1.4-SNAPSHOT" +(defproject project-checkup "0.1.4" :description "Makes sure your project is healthy. " :url "http://example.com/FIXME" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.8.0"] [org.clojure/clojurescript "1.9.521"] - ; [andare "0.9.0"] - [org.clojure/core.async "0.4.474"] - [org.clojure/test.check "0.10.0-alpha3"]] + [org.clojure/core.async "0.4.474"] + [org.clojure/test.check "0.10.0-alpha3"]] :plugins [[lein-cljsbuild "1.1.5"]] diff --git a/src/project_checkup/core.clj b/src/project_checkup/core.clj --- a/src/project_checkup/core.clj +++ b/src/project_checkup/core.clj @@ -76,8 +76,7 @@ (defn check-license [project] (let [{files :files } project] - (boolean (some #{"LICENSE" "LICENSE.txt" "LICENSE.md" "LICENSE.mkd"} files)) ) - ) + (boolean (some #{"LICENSE" "LICENSE.txt" "LICENSE.md" "LICENSE.mkd"} files)))) (def checks [{:name "Project is checked into revision control"