github.com/jdhenke/godel@v0.0.0-20161213181855-abeb3861bf0d/app.go (about)

     1  // Copyright 2016 Palantir Technologies, Inc.
     2  //
     3  // Licensed under the Apache License, Version 2.0 (the "License");
     4  // you may not use this file except in compliance with the License.
     5  // You may obtain a copy of the License at
     6  //
     7  //     http://www.apache.org/licenses/LICENSE-2.0
     8  //
     9  // Unless required by applicable law or agreed to in writing, software
    10  // distributed under the License is distributed on an "AS IS" BASIS,
    11  // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    12  // See the License for the specific language governing permissions and
    13  // limitations under the License.
    14  
    15  package godel
    16  
    17  import (
    18  	"github.com/nmiyake/pkg/errorstringer"
    19  	"github.com/palantir/pkg/cli"
    20  
    21  	"github.com/palantir/godel/cmd"
    22  	"github.com/palantir/godel/cmd/checkpath"
    23  	"github.com/palantir/godel/cmd/clicmds"
    24  	"github.com/palantir/godel/cmd/githooks"
    25  	"github.com/palantir/godel/cmd/githubwiki"
    26  	"github.com/palantir/godel/cmd/godel"
    27  	"github.com/palantir/godel/cmd/idea"
    28  	"github.com/palantir/godel/cmd/packages"
    29  	"github.com/palantir/godel/cmd/verify"
    30  )
    31  
    32  func App(gödelPath string) *cli.App {
    33  	app := cli.NewApp(cli.DebugHandler(errorstringer.StackWithInterleavedMessages))
    34  	app.Name = "godel"
    35  	app.Usage = "Run tasks for coding, checking, formatting, testing, building and publishing Go code"
    36  	app.Flags = append(app.Flags, cmd.GlobalCLIFlags()...)
    37  	app.Version = godel.Version
    38  
    39  	app.Subcommands = []cli.Command{
    40  		godel.VersionCommand(),
    41  		godel.InstallCommand(),
    42  		godel.UpdateCommand(),
    43  		checkpath.Command(),
    44  		githooks.Command(),
    45  		githubwiki.Command(),
    46  		idea.Command(),
    47  		packages.Command(),
    48  		verify.Command(gödelPath),
    49  	}
    50  	app.Subcommands = append(app.Subcommands, clicmds.CfgCliCommands(gödelPath)...)
    51  
    52  	return app
    53  }