initial commit for 0.5 release

This commit is contained in:
Brad Rydzewski
2016-05-03 16:17:16 -07:00
parent d4fe469843
commit 5825a3d797
24 changed files with 3201 additions and 421 deletions

30
vendor/github.com/codegangsta/cli/category.go generated vendored Normal file
View File

@@ -0,0 +1,30 @@
package cli
type CommandCategories []*CommandCategory
type CommandCategory struct {
Name string
Commands Commands
}
func (c CommandCategories) Less(i, j int) bool {
return c[i].Name < c[j].Name
}
func (c CommandCategories) Len() int {
return len(c)
}
func (c CommandCategories) Swap(i, j int) {
c[i], c[j] = c[j], c[i]
}
func (c CommandCategories) AddCommand(category string, command Command) CommandCategories {
for _, commandCategory := range c {
if commandCategory.Name == category {
commandCategory.Commands = append(commandCategory.Commands, command)
return c
}
}
return append(c, &CommandCategory{Name: category, Commands: []Command{command}})
}