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