Skip to content

Commit

Permalink
Use tagged literals when adding flags.
Browse files Browse the repository at this point in the history
  • Loading branch information
acrmp committed Oct 7, 2013
1 parent c4048cd commit 7f5ffef
Showing 1 changed file with 23 additions and 23 deletions.
46 changes: 23 additions & 23 deletions src/cf/app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ func NewApp(cmdFactory commands.Factory, reqFactory requirements.Factory) (app *
Description: "Delete an app",
Usage: fmt.Sprintf("%s delete -f APP", cf.Name),
Flags: []cli.Flag{
cli.BoolFlag{"f", "Force deletion without confirmation"},
cli.BoolFlag{Name: "f", Usage: "Force deletion without confirmation"},
},
Action: func(c *cli.Context) {
cmd, _ := cmdFactory.GetByCmdName("delete")
Expand All @@ -119,7 +119,7 @@ func NewApp(cmdFactory commands.Factory, reqFactory requirements.Factory) (app *
Description: "Delete a domain",
Usage: fmt.Sprintf("%s delete-domain DOMAIN", cf.Name),
Flags: []cli.Flag{
cli.BoolFlag{"f", "force deletion without confirmation"},
cli.BoolFlag{Name: "f", Usage: "force deletion without confirmation"},
},
Action: func(c *cli.Context) {
cmd, _ := cmdFactory.GetByCmdName("delete-domain")
Expand All @@ -131,7 +131,7 @@ func NewApp(cmdFactory commands.Factory, reqFactory requirements.Factory) (app *
Description: "Delete an org",
Usage: fmt.Sprintf("%s delete-org ORG", cf.Name),
Flags: []cli.Flag{
cli.BoolFlag{"f", "Force deletion without confirmation"},
cli.BoolFlag{Name: "f", Usage: "Force deletion without confirmation"},
},
Action: func(c *cli.Context) {
cmd, _ := cmdFactory.GetByCmdName("delete-org")
Expand All @@ -153,7 +153,7 @@ func NewApp(cmdFactory commands.Factory, reqFactory requirements.Factory) (app *
Description: "Delete a space",
Usage: fmt.Sprintf("%s delete-space SPACE", cf.Name),
Flags: []cli.Flag{
cli.BoolFlag{"f", "Force deletion without confirmation"},
cli.BoolFlag{Name: "f", Usage: "Force deletion without confirmation"},
},
Action: func(c *cli.Context) {
cmd, _ := cmdFactory.GetByCmdName("delete-space")
Expand Down Expand Up @@ -220,7 +220,7 @@ func NewApp(cmdFactory commands.Factory, reqFactory requirements.Factory) (app *
Description: "Tail or show recent logs for an app",
Usage: fmt.Sprintf("%s logs APP", cf.Name),
Flags: []cli.Flag{
cli.BoolFlag{"recent", "dump recent logs instead of tailing"},
cli.BoolFlag{Name: "recent", Usage: "dump recent logs instead of tailing"},
},
Action: func(c *cli.Context) {
cmd, _ := cmdFactory.GetByCmdName("logs")
Expand Down Expand Up @@ -251,7 +251,7 @@ func NewApp(cmdFactory commands.Factory, reqFactory requirements.Factory) (app *
Description: "Add a url route to an app",
Usage: fmt.Sprintf("%s map-route APP DOMAIN [-n HOSTNAME]", cf.Name),
Flags: []cli.Flag{
cli.StringFlag{"n", "", "Hostname"},
cli.StringFlag{Name: "n", Value: "", Usage: "Hostname"},
},
Action: func(c *cli.Context) {
cmd, _ := cmdFactory.GetByCmdName("map-route")
Expand Down Expand Up @@ -295,16 +295,16 @@ func NewApp(cmdFactory commands.Factory, reqFactory requirements.Factory) (app *
" [-m MEMORY] [-b URL] [--no-[re]start] [-p PATH]\n" +
" [-s STACK] [-c COMMAND]",
Flags: []cli.Flag{
cli.StringFlag{"d", "", "Domain (for example: example.com)"},
cli.StringFlag{"n", "", "Hostname (for example: my-subdomain)"},
cli.IntFlag{"i", 1, "Number of instances"},
cli.StringFlag{"m", "128", "Memory limit (for example: 256, 1G, 1024M)"},
cli.StringFlag{"b", "", "Custom buildpack URL (for example: https://github.com/heroku/heroku-buildpack-play.git)"},
cli.BoolFlag{"no-start", "Do not start an app after pushing"},
cli.BoolFlag{"no-restart", "Do not restart an app after pushing"},
cli.StringFlag{"p", "", "Path of app directory or zip file"},
cli.StringFlag{"s", "", "Stack to use"},
cli.StringFlag{"c", "", "Startup command"},
cli.StringFlag{Name: "d", Value: "", Usage: "Domain (for example: example.com)"},
cli.StringFlag{Name: "n", Value: "", Usage: "Hostname (for example: my-subdomain)"},
cli.IntFlag{Name: "i", Value: 1, Usage: "Number of instances"},
cli.StringFlag{Name: "m", Value: "128", Usage: "Memory limit (for example: 256, 1G, 1024M)"},
cli.StringFlag{Name: "b", Value: "", Usage: "Custom buildpack URL (for example: https://github.com/heroku/heroku-buildpack-play.git)"},
cli.BoolFlag{Name: "no-start", Usage: "Do not start an app after pushing"},
cli.BoolFlag{Name: "no-restart", Usage: "Do not restart an app after pushing"},
cli.StringFlag{Name: "p", Value: "", Usage: "Path of app directory or zip file"},
cli.StringFlag{Name: "s", Value: "", Usage: "Stack to use"},
cli.StringFlag{Name: "c", Value: "", Usage: "Startup command"},
},
Action: func(c *cli.Context) {
cmd, _ := cmdFactory.GetByCmdName("push")
Expand Down Expand Up @@ -361,7 +361,7 @@ func NewApp(cmdFactory commands.Factory, reqFactory requirements.Factory) (app *
Description: "Reserve a url route on a space for later use",
Usage: fmt.Sprintf("%s reserve-route SPACE DOMAIN [-n HOSTNAME]", cf.Name),
Flags: []cli.Flag{
cli.StringFlag{"n", "", "Hostname"},
cli.StringFlag{Name: "n", Value: "", Usage: "Hostname"},
},
Action: func(c *cli.Context) {
cmd, _ := cmdFactory.GetByCmdName("reserve-route")
Expand Down Expand Up @@ -393,9 +393,9 @@ func NewApp(cmdFactory commands.Factory, reqFactory requirements.Factory) (app *
Description: "Change the disk quota, instance count, and memory limit for an app",
Usage: fmt.Sprintf("%s scale APP -d DISK -i INSTANCES -m MEMORY", cf.Name),
Flags: []cli.Flag{
cli.StringFlag{"d", "", "disk quota"},
cli.IntFlag{"i", 0, "number of instances"},
cli.StringFlag{"m", "", "memory limit"},
cli.StringFlag{Name: "d", Value: "", Usage: "disk quota"},
cli.IntFlag{Name: "i", Value: 0, Usage: "number of instances"},
cli.StringFlag{Name: "m", Value: "", Usage: "memory limit"},
},
Action: func(c *cli.Context) {
cmd, _ := cmdFactory.GetByCmdName("scale")
Expand Down Expand Up @@ -495,8 +495,8 @@ func NewApp(cmdFactory commands.Factory, reqFactory requirements.Factory) (app *
Description: "Set or view the targeted org or space",
Usage: fmt.Sprintf("%s target [-o ORG] [-s SPACE]", cf.Name),
Flags: []cli.Flag{
cli.StringFlag{"o", "", "organization"},
cli.StringFlag{"s", "", "space"},
cli.StringFlag{Name: "o", Value: "", Usage: "organization"},
cli.StringFlag{Name: "s", Value: "", Usage: "space"},
},
Action: func(c *cli.Context) {
cmd, _ := cmdFactory.GetByCmdName("target")
Expand Down Expand Up @@ -527,7 +527,7 @@ func NewApp(cmdFactory commands.Factory, reqFactory requirements.Factory) (app *
Description: "Remove a url route from an app",
Usage: fmt.Sprintf("%s unmap-route APP DOMAIN [-n HOSTNAME]", cf.Name),
Flags: []cli.Flag{
cli.StringFlag{"n", "", "Hostname"},
cli.StringFlag{Name: "n", Value: "", Usage: "Hostname"},
},
Action: func(c *cli.Context) {
cmd, _ := cmdFactory.GetByCmdName("unmap-route")
Expand Down

0 comments on commit 7f5ffef

Please sign in to comment.