summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-05-03add tests for nested subcommands and subcommands with positionalsAlex Flint
2019-05-02fix error messageAlex Flint
2019-05-02test use of --versionAlex Flint
2019-05-02use backticks rather than backslashes in string literalAlex Flint
2019-05-02add test for case where environment var is not presentAlex Flint
2019-05-02add test case for missing value in middle of argument stringAlex Flint
2019-05-02add test for canParse with TextUnmarshalerAlex Flint
2019-05-02add unittests for canParseAlex Flint
2019-05-02test no such subcommandAlex Flint
2019-04-30Merge remote-tracking branch 'origin/master' into subcommand-implAlex Flint
2019-04-30Merge pull request #81 from alexflint/subcommandsAlex Flint
small refactor to validation
2019-04-30add several subcommand unittestsAlex Flint
2019-04-30add several subcommand unittestsAlex Flint
2019-04-30set subcommand structs to be struct pointersAlex Flint
2019-04-30introduced path structAlex Flint
2019-04-30add first two subcommand testsAlex Flint
2019-04-30add recursive expansion of subcommandsAlex Flint
2019-04-30rename get/settable to readable/writableAlex Flint
2019-04-30check error in testAlex Flint
2019-04-30check error in testAlex Flint
2019-04-30minor reformatAlex Flint
2019-04-14all tests passing againAlex Flint
2019-04-14restore process as a free funcAlex Flint
2019-04-14Merge remote-tracking branch 'origin/master' into subcommandsAlex Flint
2019-04-14refactor validationAlex Flint
2019-04-14Merge pull request #80 from alexflint/simplify-positionalsAlex Flint
Simplify handling of positionals a little
2019-04-14simplify processing of positionals a littleAlex Flint
2019-04-14Merge pull request #78 from alexflint/readme-spellingAlex Flint
minor fixes to readme
2019-04-14Merge pull request #79 from alexflint/update-depsAlex Flint
update deps with go mod tidy
2019-04-14update deps with go mod tidy; go vendorAlex Flint
2019-04-14more tweaksAlex Flint
2019-04-14minor fixes to readmeAlex Flint
2019-04-14Merge pull request #74 from alexflint/add-golangciAlex Flint
add golangci badge
2019-04-04update link for golangci badgeAlex Flint
2019-04-04add golangci badge, and fix some lint issues found by the toolAlex Flint
2018-12-27Merge pull request #72 from alexflint/integration-testsAlex Flint
Tests for installation under go 1.10 and go 1.11
2018-12-27hook integration tests into travisAlex Flint
2018-12-27add script to compile under go 1.10Alex Flint
2018-12-27add test that compiles under go 1.11 without the module systemAlex Flint
2018-12-27add integration test that fetches and compiles code using go 1.11Alex Flint
2018-12-27Merge pull request #70 from alexflint/create-go-modv1.0.0Alex Flint
Migrate from Godep to go.mod
2018-11-20use go modules in travisAlex Flint
2018-11-20go mod vendorAlex Flint
2018-11-20create go.mod, go.sumAlex Flint
2018-11-20drop godepsAlex Flint
2018-11-20Merge pull request #69 from pborzenkov/update-go-scalarAlex Flint
Update go scalar to the latest version
2018-11-20README: update TextUnmarshaler examplePavel Borzenkov
Values are much more convenient to use in argument structs, so update README to use them instead of pointers in the example as we now support this. Signed-off-by: Pavel Borzenkov <[email protected]>
2018-11-20parse_test: add tests covering new TextUnamarshaler value supportPavel Borzenkov
Signed-off-by: Pavel Borzenkov <[email protected]>
2018-11-20parse_test: fix formattingPavel Borzenkov
Signed-off-by: Pavel Borzenkov <[email protected]>
2018-11-20vendor: update go-scalar to the latest versionPavel Borzenkov
Allows to use values (not pointer) with custom TextUnmarshaler. Signed-off-by: Pavel Borzenkov <[email protected]>