Description:
Update version.
Commit status:
[Not Reviewed]
References:
Comments:
0 Commit comments 0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
Add another comment

r16:aa7d72e858bb -

@@ -8,13 +8,9
8 8
9 9 ## Usage
10 10
11 Run the issue:
12
13 $ java -jar project-checkup-0.1.2-standalone.jar [args]
11 Run the app in the current working directory:
14 12
15 ## Options
16
17 FIXME: listing of options this app accepts.
13 $ java -jar project-checkup-0.1.2-standalone.jar
18 14
19 15 ## License
20 16
@@ -1,13 +1,12
1 (defproject project-checkup "0.1.4-SNAPSHOT"
1 (defproject project-checkup "0.1.4"
2 2 :description "Makes sure your project is healthy. "
3 3 :url "http://example.com/FIXME"
4 4 :license {:name "Eclipse Public License"
5 5 :url "http://www.eclipse.org/legal/epl-v10.html"}
6 6 :dependencies [[org.clojure/clojure "1.8.0"]
7 7 [org.clojure/clojurescript "1.9.521"]
8 ; [andare "0.9.0"]
9 [org.clojure/core.async "0.4.474"]
10 [org.clojure/test.check "0.10.0-alpha3"]]
8 [org.clojure/core.async "0.4.474"]
9 [org.clojure/test.check "0.10.0-alpha3"]]
11 10
12 11 :plugins [[lein-cljsbuild "1.1.5"]]
13 12
@@ -76,8 +76,7
76 76
77 77 (defn check-license [project]
78 78 (let [{files :files } project]
79 (boolean (some #{"LICENSE" "LICENSE.txt" "LICENSE.md" "LICENSE.mkd"} files)) )
80 )
79 (boolean (some #{"LICENSE" "LICENSE.txt" "LICENSE.md" "LICENSE.mkd"} files))))
81 80
82 81
83 82 (def checks [{:name "Project is checked into revision control"
You need to be logged in to leave comments. Login now