Finished 1.0.0 of libpit. Other housekeeping performed as well.

Moved issue for the PIT project to top-level.
Created top-level versioning properties and project properties for pit-cli
This commit is contained in:
Jonathan Bernard
2010-02-13 21:30:31 -06:00
parent f3f30237b2
commit bb56b706f8
21 changed files with 116 additions and 56 deletions

View File

@ -7,6 +7,8 @@ class Project {
Map<String, Project> projects = [:]
Project(File dir, Filter filter = null) {
this.name = dir.name
dir.eachFile { child ->
// add sub projects
@ -62,7 +64,7 @@ class Project {
each(options.filter) {
if (it instanceof Project) {
println "\n${options.offset}${it.name}"
println "${options.offset}${'-'.multiply(p.name.length())}"
println "${options.offset}${'-'.multiply(it.name.length())}"
} else {
println "${options.offset}${it.id}(${it.priority}): " +
"${it.category} ${it.title}"