Overview
| Comment: | Added tbd.slide as well |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
96db0716741c06335971acd6c3b933ed |
| User & Date: | spaskalev on 2015-01-26 20:40:44.690 |
| Other Links: | manifest | tags |
Context
|
2015-01-26
| ||
| 21:32 | Added missing depends interation in the collecting handler check-in: 3861ae4c57 user: spaskalev tags: trunk | |
| 20:40 | Added tbd.slide as well check-in: 96db071674 user: spaskalev tags: trunk | |
| 20:30 | Added tbd from gophergala/tbd :) check-in: 61b0c5b57a user: spaskalev tags: trunk | |
Changes
Added docs/tbd.slide version [9ed118b5bc].
Modified src/0dev.org/commands/tbd/tbd.go
from [bf4f228fed]
to [2085cbcbc6].
1 | // tbd, a #tag-based dependency tool for low ceremony task tracking | < | 1 2 3 4 5 6 7 8 | // tbd, a #tag-based dependency tool for low ceremony task tracking package main import ( "bufio" "bytes" "fmt" "io" |
| ︙ | ︙ | |||
80 81 82 83 84 85 86 | } fmt.Fprintln(os.Stderr, "Error reading input.", err.Error()) return 1 } } } | | | 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 |
}
fmt.Fprintln(os.Stderr, "Error reading input.", err.Error())
return 1
}
}
}
// The tags struct contains hash (#) tags
type tags struct {
hash []string
}
// as per fmt.Stringer
func (t tags) String() string {
var output bytes.Buffer
|
| ︙ | ︙ |