├── .drone.yml ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.adoc ├── crest-maven-plugin ├── pom.xml └── src │ ├── main │ └── java │ │ └── org │ │ └── tomitribe │ │ └── crest │ │ └── maven │ │ └── CrestCommandLoaderDescriptorGeneratorMojo.java │ └── test │ └── java │ └── org │ └── tomitribe │ └── crest │ └── maven │ └── CrestCommandLoaderDescriptorGeneratorMojoTest.java ├── pom.xml ├── tomitribe-crest-api ├── pom.xml └── src │ └── main │ └── java │ └── org │ └── tomitribe │ └── crest │ └── api │ ├── Command.java │ ├── CrestAnnotation.java │ ├── Default.java │ ├── Defaults.java │ ├── Editor.java │ ├── Err.java │ ├── Exit.java │ ├── GlobalOptions.java │ ├── In.java │ ├── Loader.java │ ├── NotAService.java │ ├── Option.java │ ├── Options.java │ ├── Out.java │ ├── PrintOutput.java │ ├── Required.java │ ├── StreamingOutput.java │ ├── interceptor │ ├── CrestContext.java │ ├── CrestInterceptor.java │ └── ParameterMetadata.java │ ├── table │ ├── Border.java │ ├── Table.java │ └── TableOptions.java │ └── validation │ └── Validation.java ├── tomitribe-crest-archetype ├── pom.xml └── src │ └── main │ └── resources │ ├── META-INF │ ├── LICENSE │ ├── NOTICE │ ├── archetype-post-generate.groovy │ └── maven │ │ └── archetype-metadata.xml │ └── archetype-resources │ ├── README.adoc │ ├── pom.xml │ └── src │ ├── main │ └── java │ │ ├── App.java │ │ ├── FileEditor.java │ │ └── IsFile.java │ └── test │ └── java │ └── AppTest.java ├── tomitribe-crest-arthur-extension ├── pom.xml └── src │ ├── main │ ├── java │ │ └── org │ │ │ └── tomitribe │ │ │ └── crest │ │ │ └── arthur │ │ │ ├── CrestExtension.java │ │ │ └── feature │ │ │ └── CrestFeature.java │ └── resources │ │ └── META-INF │ │ └── services │ │ ├── org.apache.geronimo.arthur.spi.ArthurExtension │ │ └── org.graalvm.compiler.options.OptionDescriptors │ └── test │ └── java │ └── org │ └── tomitribe │ └── crest │ └── arthur │ └── CrestExtensionTest.java ├── tomitribe-crest-cli ├── pom.xml └── src │ ├── main │ └── java │ │ └── org │ │ └── tomitribe │ │ └── crest │ │ └── cli │ │ ├── api │ │ ├── CliEnvironment.java │ │ ├── CrestCli.java │ │ ├── InputReader.java │ │ ├── format │ │ │ └── Table.java │ │ └── interceptor │ │ │ ├── base │ │ │ └── ParameterVisitor.java │ │ │ └── interactive │ │ │ ├── Interactivable.java │ │ │ └── InteractiveMissingParameters.java │ │ └── impl │ │ ├── CliEnv.java │ │ ├── CommandParser.java │ │ └── command │ │ ├── JSonP.java │ │ └── Streams.java │ └── test │ └── java │ └── org │ └── tomitribe │ └── crest │ └── cli │ ├── api │ ├── CrestCliTest.java │ └── format │ │ └── TableTest.java │ └── impl │ └── CommandParserTest.java ├── tomitribe-crest-generator ├── pom.xml └── src │ ├── main │ ├── java │ │ └── org │ │ │ └── tomitribe │ │ │ └── crest │ │ │ └── generator │ │ │ └── CrestBindingGeneratorProcessor.java │ └── resources │ │ └── META-INF │ │ └── services │ │ └── javax.annotation.processing.Processor │ └── test │ └── java │ └── org │ └── tomitribe │ └── crest │ └── generator │ └── CrestBindingGeneratorProcessorTest.java ├── tomitribe-crest-test ├── pom.xml └── src │ ├── main │ └── java │ │ └── org │ │ └── tomitribe │ │ └── crest │ │ └── test │ │ ├── Jar.java │ │ ├── Jars.java │ │ └── Java.java │ └── test │ └── java │ └── org │ └── tomitribe │ └── crest │ └── test │ ├── Hello.java │ └── JarTest.java ├── tomitribe-crest-xbean ├── pom.xml └── src │ ├── main │ ├── java │ │ └── org │ │ │ └── tomitribe │ │ │ └── crest │ │ │ └── xbean │ │ │ ├── ClasspathScanner.java │ │ │ ├── UberJarScanner.java │ │ │ └── XbeanScanningLoader.java │ └── resources │ │ └── META-INF │ │ ├── LICENSE │ │ ├── NOTICE │ │ └── services │ │ └── org.tomitribe.crest.cmds.processors.Commands$Loader │ └── test │ └── java │ └── org │ └── tomitribe │ └── crest │ └── xbean │ └── XbeanScanningLoaderTest.java ├── tomitribe-crest ├── pom.xml └── src │ ├── main │ ├── java │ │ └── org │ │ │ └── tomitribe │ │ │ └── crest │ │ │ ├── BashCompletion.java │ │ │ ├── EditorLoader.java │ │ │ ├── Exec.java │ │ │ ├── Main.java │ │ │ ├── Manifest.java │ │ │ ├── cmds │ │ │ ├── Arguments.java │ │ │ ├── Cmd.java │ │ │ ├── CmdGroup.java │ │ │ ├── CmdMethod.java │ │ │ ├── CommandFailedException.java │ │ │ ├── Completer.java │ │ │ ├── ComplexParam.java │ │ │ ├── GlobalSpec.java │ │ │ ├── HelpPrintedException.java │ │ │ ├── MissingArgumentException.java │ │ │ ├── Needed.java │ │ │ ├── OverloadedCmdMethod.java │ │ │ ├── Spec.java │ │ │ ├── processors │ │ │ │ ├── Commands.java │ │ │ │ ├── Help.java │ │ │ │ ├── Item.java │ │ │ │ ├── OptionParam.java │ │ │ │ ├── Param.java │ │ │ │ └── types │ │ │ │ │ └── PrimitiveTypes.java │ │ │ ├── targets │ │ │ │ ├── SimpleBean.java │ │ │ │ ├── Substitution.java │ │ │ │ ├── Target.java │ │ │ │ └── TargetProvider.java │ │ │ └── utils │ │ │ │ └── CommandLine.java │ │ │ ├── contexts │ │ │ ├── DefaultsContext.java │ │ │ ├── EnvDefaultsContext.java │ │ │ └── SystemPropertiesDefaultsContext.java │ │ │ ├── environments │ │ │ ├── Environment.java │ │ │ └── SystemEnvironment.java │ │ │ ├── help │ │ │ ├── Bullet.java │ │ │ ├── CommandJavadoc.java │ │ │ ├── Document.java │ │ │ ├── DocumentFormatter.java │ │ │ ├── DocumentParser.java │ │ │ ├── Element.java │ │ │ ├── Heading.java │ │ │ ├── HelpProcessor.java │ │ │ ├── Highlight.java │ │ │ ├── HtmlDocumentParser.java │ │ │ ├── IllegalElementException.java │ │ │ ├── InvalidJavadocFileException.java │ │ │ ├── Justify.java │ │ │ ├── Option.java │ │ │ ├── Paragraph.java │ │ │ ├── Preformatted.java │ │ │ └── Wrap.java │ │ │ ├── interceptor │ │ │ ├── InterceptorAnnotationNotFoundException.java │ │ │ ├── UnresolvedInterceptorAnnotationException.java │ │ │ ├── internal │ │ │ │ ├── InternalInterceptor.java │ │ │ │ └── InternalInterceptorInvocationContext.java │ │ │ └── security │ │ │ │ ├── RoleProvider.java │ │ │ │ └── SecurityInterceptor.java │ │ │ ├── javadoc │ │ │ ├── Javadoc.java │ │ │ └── JavadocParser.java │ │ │ ├── lang │ │ │ └── Substitutor.java │ │ │ ├── table │ │ │ ├── Border.java │ │ │ ├── Data.java │ │ │ ├── Formatting.java │ │ │ ├── Line.java │ │ │ ├── Lines.java │ │ │ ├── Options.java │ │ │ ├── Parts.java │ │ │ ├── Resize.java │ │ │ ├── Table.java │ │ │ ├── TableInterceptor.java │ │ │ ├── TableOutput.java │ │ │ ├── Tables.java │ │ │ └── Width.java │ │ │ ├── term │ │ │ └── Screen.java │ │ │ └── val │ │ │ ├── BVal05.java │ │ │ ├── BeanValidation.java │ │ │ ├── BeanValidation11.java │ │ │ ├── BeanValidationImpl.java │ │ │ ├── BeanValidationMessages.java │ │ │ ├── BuiltInValidation.java │ │ │ ├── ConstraintAdapter.java │ │ │ ├── Directory.java │ │ │ ├── Executable.java │ │ │ ├── Exists.java │ │ │ ├── Readable.java │ │ │ └── Writable.java │ └── resources │ │ ├── META-INF │ │ ├── LICENSE │ │ └── NOTICE │ │ ├── ValidationMessages.properties │ │ ├── ValidationMessages_en.properties │ │ └── ValidationMessages_pt_BR.properties │ └── test │ ├── java │ └── org │ │ └── tomitribe │ │ └── crest │ │ ├── AdvancedArrayArgTest.java │ │ ├── Archives.java │ │ ├── ArgArraysTest.java │ │ ├── ArgListsTest.java │ │ ├── BashCompletionTest.java │ │ ├── BeanValidationTest.java │ │ ├── BenInjectionPrefixTest.java │ │ ├── BooleanOptionsTest.java │ │ ├── Cli.java │ │ ├── CmdMethodTest.java │ │ ├── CommandNameAndVersionTest.java │ │ ├── CompleterTest.java │ │ ├── Crest.java │ │ ├── DefaultInterpolationTest.java │ │ ├── DefaultListOptionSplittingTest.java │ │ ├── DefaultOptionListsAndOptionsTest.java │ │ ├── DefaultOptionListsTest.java │ │ ├── DefaultOptionsAndSuppliedArgsTest.java │ │ ├── DefaultSubstitutionTest.java │ │ ├── EditorInLoaderTest.java │ │ ├── EnumOptionListTest.java │ │ ├── ExceptionHandlingTest.java │ │ ├── ExplicitPrimitiveOptionDefaultsTest.java │ │ ├── Foo.java │ │ ├── GlobalOptionsTest.java │ │ ├── HelpTest.java │ │ ├── HelpWithInnerOptionsTest.java │ │ ├── ImplicitPrimitiveOptionDefaultsTest.java │ │ ├── InterceptorTest.java │ │ ├── Java.java │ │ ├── MainBuilderTest.java │ │ ├── MainTest.java │ │ ├── ManifestTest.java │ │ ├── ManyOptionTest.java │ │ ├── MissingArgumentTest.java │ │ ├── NullableOptionsTest.java │ │ ├── OptionArraysTest.java │ │ ├── OptionListsTest.java │ │ ├── OptionsObjectAdvancedArrayArgTest.java │ │ ├── OptionsObjectTest.java │ │ ├── OptionsObjectValidationTest.java │ │ ├── OptionsUsageTest.java │ │ ├── OverloadedCmdHelpTest.java │ │ ├── OverloadedCmdMethodTest.java │ │ ├── PluggableDefaultParsingTest.java │ │ ├── PluggableTargetTest.java │ │ ├── PrimitiveTypesTest.java │ │ ├── ServiceInjectionTest.java │ │ ├── SomeOptionsAndSuppliedArgsTest.java │ │ ├── StreamInjectionTest.java │ │ ├── SubCommandsTest.java │ │ ├── SubstitutionTest.java │ │ ├── SupportedCollectionTypesTest.java │ │ ├── SystemPropertiesTest.java │ │ ├── ValidationTest.java │ │ ├── VarargStreamTest.java │ │ ├── cmds │ │ ├── ArgumentsSplitTest.java │ │ ├── GlobalSpecTest.java │ │ └── utils │ │ │ └── CommandLineTest.java │ │ ├── help │ │ ├── AuthorTest.java │ │ ├── DefaultsShownTest.java │ │ ├── DocumentFormatterTest.java │ │ ├── DocumentParserTest.java │ │ ├── GenericsInMethodSignatureTest.java │ │ ├── HighlightTest.java │ │ ├── JavadocHelpComplexTest.java │ │ ├── JustifyTest.java │ │ ├── ManualTest.java │ │ ├── ParamWithPreformattedTextTest.java │ │ ├── RsyncManPage.java │ │ ├── SeeAlsoTest.java │ │ ├── SubcommandTest.java │ │ ├── TestEnvironment.java │ │ └── WrapTest.java │ │ ├── interceptor │ │ ├── CustomInterceptorAnnotationTest.java │ │ └── security │ │ │ └── SecurityInterceptorTest.java │ │ ├── javadoc │ │ └── JavadocParserTest.java │ │ ├── returns │ │ └── ReturnStringArrayArrayTest.java │ │ ├── table │ │ ├── DataTest.java │ │ ├── FormattingItemTest.java │ │ ├── FormattingTest.java │ │ ├── PartsTest.java │ │ ├── TableBorderNoHeaderTest.java │ │ ├── TableBorderTest.java │ │ ├── TableFieldsTest.java │ │ ├── TableHeaderTest.java │ │ ├── TableOptionsTest.java │ │ ├── TableSortTest.java │ │ ├── TableTest.java │ │ ├── TableWrappingTest.java │ │ └── WidthTest.java │ │ └── util │ │ ├── ConverterTest.java │ │ ├── DurationTest.java │ │ ├── SizeTest.java │ │ ├── SizeUnitTest.java │ │ └── TimeUtilsTest.java │ └── resources │ ├── TableBorderNoHeaderTest │ ├── asciiCompact.txt │ ├── asciiDots.txt │ ├── asciiSeparated.txt │ ├── githubMarkdown.txt │ ├── mysqlStyle.txt │ ├── reStructuredTextGrid.txt │ ├── reStructuredTextSimple.txt │ ├── redditMarkdown.txt │ ├── unicodeDouble.txt │ ├── unicodeSingle.txt │ ├── unicodeSingleSeparated.txt │ ├── whitespaceCompact.txt │ └── whitespaceSeparated.txt │ ├── TableBorderTest │ ├── asciiCompact.txt │ ├── asciiDots.txt │ ├── asciiSeparated.txt │ ├── githubMarkdown.txt │ ├── mysqlStyle.txt │ ├── reStructuredTextGrid.txt │ ├── reStructuredTextSimple.txt │ ├── redditMarkdown.txt │ ├── unicodeDouble.txt │ ├── unicodeSingle.txt │ ├── unicodeSingleSeparated.txt │ ├── whitespaceCompact.txt │ └── whitespaceSeparated.txt │ ├── completion │ ├── booleanoption.sh │ ├── defaults.sh │ ├── enums.sh │ ├── foo.sh │ ├── groups.sh │ └── overloaded.sh │ ├── help │ ├── org.tomitribe.crest.AdvancedArrayArgTest$OneExtra_copy.txt │ ├── org.tomitribe.crest.AdvancedArrayArgTest$RequiredList_copy.txt │ ├── org.tomitribe.crest.AdvancedArrayArgTest$TwoExtra_copy.txt │ ├── org.tomitribe.crest.ArgArraysTest$Commands_doBoolean.txt │ ├── org.tomitribe.crest.ArgArraysTest$Commands_doByte.txt │ ├── org.tomitribe.crest.ArgArraysTest$Commands_doChar.txt │ ├── org.tomitribe.crest.ArgArraysTest$Commands_doDouble.txt │ ├── org.tomitribe.crest.ArgArraysTest$Commands_doFloat.txt │ ├── org.tomitribe.crest.ArgArraysTest$Commands_doInt.txt │ ├── org.tomitribe.crest.ArgArraysTest$Commands_doLong.txt │ ├── org.tomitribe.crest.ArgArraysTest$Commands_doShort.txt │ ├── org.tomitribe.crest.ArgArraysTest$Commands_doString.txt │ ├── org.tomitribe.crest.ArgArraysTest$Commands_doURI.txt │ ├── org.tomitribe.crest.ArgListsTest$Commands_doBoolean.txt │ ├── org.tomitribe.crest.ArgListsTest$Commands_doByte.txt │ ├── org.tomitribe.crest.ArgListsTest$Commands_doCharacter.txt │ ├── org.tomitribe.crest.ArgListsTest$Commands_doDouble.txt │ ├── org.tomitribe.crest.ArgListsTest$Commands_doFloat.txt │ ├── org.tomitribe.crest.ArgListsTest$Commands_doInt.txt │ ├── org.tomitribe.crest.ArgListsTest$Commands_doLong.txt │ ├── org.tomitribe.crest.ArgListsTest$Commands_doShort.txt │ ├── org.tomitribe.crest.ArgListsTest$Commands_doString.txt │ ├── org.tomitribe.crest.ArgListsTest$Commands_doURI.txt │ ├── org.tomitribe.crest.BeanValidationTest$Duplicates_check.txt │ ├── org.tomitribe.crest.BeanValidationTest$Duplicates_empty.txt │ ├── org.tomitribe.crest.BooleanOptionsTest$Commands_object.txt │ ├── org.tomitribe.crest.BooleanOptionsTest$Commands_object2.txt │ ├── org.tomitribe.crest.BooleanOptionsTest$Commands_object3.txt │ ├── org.tomitribe.crest.BooleanOptionsTest$Commands_primitive.txt │ ├── org.tomitribe.crest.BooleanOptionsTest$Commands_primitive2.txt │ ├── org.tomitribe.crest.BooleanOptionsTest$Commands_primitive3.txt │ ├── org.tomitribe.crest.CmdMethodTest$Commands_booleanOption.txt │ ├── org.tomitribe.crest.CmdMethodTest$Commands_cat.txt │ ├── org.tomitribe.crest.CmdMethodTest$Commands_ls.txt │ ├── org.tomitribe.crest.CmdMethodTest$Commands_prefixed.txt │ ├── org.tomitribe.crest.CmdMethodTest$Commands_required.txt │ ├── org.tomitribe.crest.CmdMethodTest$Commands_set.txt │ ├── org.tomitribe.crest.CmdMethodTest$Commands_tail.txt │ ├── org.tomitribe.crest.CmdMethodTest$Commands_tar.txt │ ├── org.tomitribe.crest.CmdMethodTest$Commands_touch.txt │ ├── org.tomitribe.crest.CompleterTest$Copy_copy.txt │ ├── org.tomitribe.crest.CompleterTest$Foo_blue.txt │ ├── org.tomitribe.crest.CompleterTest$Foo_green.txt │ ├── org.tomitribe.crest.CompleterTest$Foo_red.txt │ ├── org.tomitribe.crest.CompleterTest$Git_git.txt │ ├── org.tomitribe.crest.CompleterTest$Git_git_push.txt │ ├── org.tomitribe.crest.CompleterTest$Svn_svn.txt │ ├── org.tomitribe.crest.CompleterTest$Svn_svn_checkout.txt │ ├── org.tomitribe.crest.CompleterTest$Svn_svn_commit.txt │ ├── org.tomitribe.crest.DefaultListOptionSplittingTest$Commands_onComma.txt │ ├── org.tomitribe.crest.DefaultListOptionSplittingTest$Commands_onTab.txt │ ├── org.tomitribe.crest.DefaultListOptionSplittingTest$Commands_onUnicode.txt │ ├── org.tomitribe.crest.DefaultListOptionSplittingTest$Commands_onlyBeforeSubstition.txt │ ├── org.tomitribe.crest.DefaultOptionListsAndOptionsTest$Commands_doBoolean.txt │ ├── org.tomitribe.crest.DefaultOptionListsAndOptionsTest$Commands_doByte.txt │ ├── org.tomitribe.crest.DefaultOptionListsAndOptionsTest$Commands_doCharacter.txt │ ├── org.tomitribe.crest.DefaultOptionListsAndOptionsTest$Commands_doDouble.txt │ ├── org.tomitribe.crest.DefaultOptionListsAndOptionsTest$Commands_doFloat.txt │ ├── org.tomitribe.crest.DefaultOptionListsAndOptionsTest$Commands_doInt.txt │ ├── org.tomitribe.crest.DefaultOptionListsAndOptionsTest$Commands_doLong.txt │ ├── org.tomitribe.crest.DefaultOptionListsAndOptionsTest$Commands_doShort.txt │ ├── org.tomitribe.crest.DefaultOptionListsAndOptionsTest$Commands_doString.txt │ ├── org.tomitribe.crest.DefaultOptionListsAndOptionsTest$Commands_doURI.txt │ ├── org.tomitribe.crest.DefaultOptionListsTest$Commands_doBoolean.txt │ ├── org.tomitribe.crest.DefaultOptionListsTest$Commands_doByte.txt │ ├── org.tomitribe.crest.DefaultOptionListsTest$Commands_doCharacter.txt │ ├── org.tomitribe.crest.DefaultOptionListsTest$Commands_doDouble.txt │ ├── org.tomitribe.crest.DefaultOptionListsTest$Commands_doFloat.txt │ ├── org.tomitribe.crest.DefaultOptionListsTest$Commands_doInt.txt │ ├── org.tomitribe.crest.DefaultOptionListsTest$Commands_doLong.txt │ ├── org.tomitribe.crest.DefaultOptionListsTest$Commands_doShort.txt │ ├── org.tomitribe.crest.DefaultOptionListsTest$Commands_doString.txt │ ├── org.tomitribe.crest.DefaultOptionListsTest$Commands_doURI.txt │ ├── org.tomitribe.crest.DefaultOptionsAndSuppliedArgsTest$Commands_doBoolean.txt │ ├── org.tomitribe.crest.DefaultOptionsAndSuppliedArgsTest$Commands_doByte.txt │ ├── org.tomitribe.crest.DefaultOptionsAndSuppliedArgsTest$Commands_doChar.txt │ ├── org.tomitribe.crest.DefaultOptionsAndSuppliedArgsTest$Commands_doDouble.txt │ ├── org.tomitribe.crest.DefaultOptionsAndSuppliedArgsTest$Commands_doFloat.txt │ ├── org.tomitribe.crest.DefaultOptionsAndSuppliedArgsTest$Commands_doInt.txt │ ├── org.tomitribe.crest.DefaultOptionsAndSuppliedArgsTest$Commands_doLong.txt │ ├── org.tomitribe.crest.DefaultOptionsAndSuppliedArgsTest$Commands_doMixed.txt │ ├── org.tomitribe.crest.DefaultOptionsAndSuppliedArgsTest$Commands_doShort.txt │ ├── org.tomitribe.crest.DefaultOptionsAndSuppliedArgsTest$Commands_doString.txt │ ├── org.tomitribe.crest.DefaultOptionsAndSuppliedArgsTest$Commands_doURI.txt │ ├── org.tomitribe.crest.DefaultSubstitutionTest$Commands_doAllExplicit.txt │ ├── org.tomitribe.crest.DefaultSubstitutionTest$Commands_doRelyOnDefaults.txt │ ├── org.tomitribe.crest.EnumOptionListTest$Commands_array.txt │ ├── org.tomitribe.crest.EnumOptionListTest$Commands_list.txt │ ├── org.tomitribe.crest.ExplicitPrimitiveOptionDefaultsTest$Commands_doAll.txt │ ├── org.tomitribe.crest.ExplicitPrimitiveOptionDefaultsTest$Commands_doBoolean.txt │ ├── org.tomitribe.crest.ExplicitPrimitiveOptionDefaultsTest$Commands_doByte.txt │ ├── org.tomitribe.crest.ExplicitPrimitiveOptionDefaultsTest$Commands_doChar.txt │ ├── org.tomitribe.crest.ExplicitPrimitiveOptionDefaultsTest$Commands_doDouble.txt │ ├── org.tomitribe.crest.ExplicitPrimitiveOptionDefaultsTest$Commands_doFloat.txt │ ├── org.tomitribe.crest.ExplicitPrimitiveOptionDefaultsTest$Commands_doInt.txt │ ├── org.tomitribe.crest.ExplicitPrimitiveOptionDefaultsTest$Commands_doLong.txt │ ├── org.tomitribe.crest.ExplicitPrimitiveOptionDefaultsTest$Commands_doShort.txt │ ├── org.tomitribe.crest.HelpTest$DefaultsAndEnums_test.txt │ ├── org.tomitribe.crest.HelpTest$Git_git.txt │ ├── org.tomitribe.crest.HelpTest$Git_git_pull.txt │ ├── org.tomitribe.crest.HelpTest$Git_git_push.txt │ ├── org.tomitribe.crest.HelpTest$OptionLists_test.txt │ ├── org.tomitribe.crest.HelpTest$Rsync_rsync.txt │ ├── org.tomitribe.crest.HelpWithInnerOptionsTest$DefaultsAndEnums_test.txt │ ├── org.tomitribe.crest.HelpWithInnerOptionsTest$OptionLists_test.txt │ ├── org.tomitribe.crest.HelpWithInnerOptionsTest$Rsync_rsync.txt │ ├── org.tomitribe.crest.ImplicitPrimitiveOptionDefaultsTest$Commands_doAll.txt │ ├── org.tomitribe.crest.ImplicitPrimitiveOptionDefaultsTest$Commands_doBoolean.txt │ ├── org.tomitribe.crest.ImplicitPrimitiveOptionDefaultsTest$Commands_doByte.txt │ ├── org.tomitribe.crest.ImplicitPrimitiveOptionDefaultsTest$Commands_doChar.txt │ ├── org.tomitribe.crest.ImplicitPrimitiveOptionDefaultsTest$Commands_doDouble.txt │ ├── org.tomitribe.crest.ImplicitPrimitiveOptionDefaultsTest$Commands_doFloat.txt │ ├── org.tomitribe.crest.ImplicitPrimitiveOptionDefaultsTest$Commands_doInt.txt │ ├── org.tomitribe.crest.ImplicitPrimitiveOptionDefaultsTest$Commands_doLong.txt │ ├── org.tomitribe.crest.ImplicitPrimitiveOptionDefaultsTest$Commands_doShort.txt │ ├── org.tomitribe.crest.MainTest$Foo_blue.txt │ ├── org.tomitribe.crest.MainTest$Foo_green.txt │ ├── org.tomitribe.crest.MainTest$Foo_red.txt │ ├── org.tomitribe.crest.ManyOptionTest$Commands_doString.txt │ ├── org.tomitribe.crest.ManyOptionTest$Commands_rsync.txt │ ├── org.tomitribe.crest.OptionArraysTest$Commands_doBoolean.txt │ ├── org.tomitribe.crest.OptionArraysTest$Commands_doByte.txt │ ├── org.tomitribe.crest.OptionArraysTest$Commands_doChar.txt │ ├── org.tomitribe.crest.OptionArraysTest$Commands_doDouble.txt │ ├── org.tomitribe.crest.OptionArraysTest$Commands_doFloat.txt │ ├── org.tomitribe.crest.OptionArraysTest$Commands_doInt.txt │ ├── org.tomitribe.crest.OptionArraysTest$Commands_doLong.txt │ ├── org.tomitribe.crest.OptionArraysTest$Commands_doShort.txt │ ├── org.tomitribe.crest.OptionArraysTest$Commands_doString.txt │ ├── org.tomitribe.crest.OptionArraysTest$Commands_doURI.txt │ ├── org.tomitribe.crest.OptionListsTest$Commands_doBoolean.txt │ ├── org.tomitribe.crest.OptionListsTest$Commands_doByte.txt │ ├── org.tomitribe.crest.OptionListsTest$Commands_doCharacter.txt │ ├── org.tomitribe.crest.OptionListsTest$Commands_doDouble.txt │ ├── org.tomitribe.crest.OptionListsTest$Commands_doFloat.txt │ ├── org.tomitribe.crest.OptionListsTest$Commands_doInt.txt │ ├── org.tomitribe.crest.OptionListsTest$Commands_doLong.txt │ ├── org.tomitribe.crest.OptionListsTest$Commands_doShort.txt │ ├── org.tomitribe.crest.OptionListsTest$Commands_doString.txt │ ├── org.tomitribe.crest.OptionListsTest$Commands_doURI.txt │ ├── org.tomitribe.crest.OptionsObjectAdvancedArrayArgTest$Commands_args.txt │ ├── org.tomitribe.crest.OptionsObjectAdvancedArrayArgTest$Commands_complex.txt │ ├── org.tomitribe.crest.OptionsObjectAdvancedArrayArgTest$Commands_complex2.txt │ ├── org.tomitribe.crest.OptionsObjectAdvancedArrayArgTest$Commands_complex3.txt │ ├── org.tomitribe.crest.OptionsObjectAdvancedArrayArgTest$Commands_complex4.txt │ ├── org.tomitribe.crest.OptionsObjectAdvancedArrayArgTest$Commands_complex5.txt │ ├── org.tomitribe.crest.OptionsObjectAdvancedArrayArgTest$Commands_mixed.txt │ ├── org.tomitribe.crest.OptionsObjectAdvancedArrayArgTest$Commands_options.txt │ ├── org.tomitribe.crest.OptionsObjectAdvancedArrayArgTest$Commands_optionsAndArgs.txt │ ├── org.tomitribe.crest.OptionsObjectAdvancedArrayArgTest$Commands_simple.txt │ ├── org.tomitribe.crest.OptionsObjectAdvancedArrayArgTest$Commands_twoBeans.txt │ ├── org.tomitribe.crest.OptionsObjectTest$Commands_args.txt │ ├── org.tomitribe.crest.OptionsObjectTest$Commands_mixed.txt │ ├── org.tomitribe.crest.OptionsObjectTest$Commands_options.txt │ ├── org.tomitribe.crest.OptionsObjectTest$Commands_optionsAndArgs.txt │ ├── org.tomitribe.crest.OptionsObjectTest$Commands_twoBeans.txt │ ├── org.tomitribe.crest.OptionsObjectValidationTest$Commands_validation.txt │ ├── org.tomitribe.crest.OverloadedCmdMethodTest$TestCommands_help.txt │ ├── org.tomitribe.crest.PluggableDefaultParsingTest$Orange_defaults.txt │ ├── org.tomitribe.crest.PluggableDefaultParsingTest$Orange_property.txt │ ├── org.tomitribe.crest.SomeOptionsAndSuppliedArgsTest$Commands_doBoolean.txt │ ├── org.tomitribe.crest.SomeOptionsAndSuppliedArgsTest$Commands_doByte.txt │ ├── org.tomitribe.crest.SomeOptionsAndSuppliedArgsTest$Commands_doChar.txt │ ├── org.tomitribe.crest.SomeOptionsAndSuppliedArgsTest$Commands_doDouble.txt │ ├── org.tomitribe.crest.SomeOptionsAndSuppliedArgsTest$Commands_doFloat.txt │ ├── org.tomitribe.crest.SomeOptionsAndSuppliedArgsTest$Commands_doInt.txt │ ├── org.tomitribe.crest.SomeOptionsAndSuppliedArgsTest$Commands_doLong.txt │ ├── org.tomitribe.crest.SomeOptionsAndSuppliedArgsTest$Commands_doMixed.txt │ ├── org.tomitribe.crest.SomeOptionsAndSuppliedArgsTest$Commands_doShort.txt │ ├── org.tomitribe.crest.SomeOptionsAndSuppliedArgsTest$Commands_doString.txt │ ├── org.tomitribe.crest.SomeOptionsAndSuppliedArgsTest$Commands_doURI.txt │ ├── org.tomitribe.crest.SubCommandsTest$Git_git.txt │ ├── org.tomitribe.crest.SubCommandsTest$Git_git_pull.txt │ ├── org.tomitribe.crest.SubCommandsTest$Git_git_push.txt │ ├── org.tomitribe.crest.SystemPropertiesTest$Orange_defaults.txt │ └── org.tomitribe.crest.SystemPropertiesTest$Orange_property.txt │ ├── man │ ├── expected-106.txt │ ├── expected-178.txt │ ├── expected-86.txt │ └── input-markdown.txt │ └── org │ └── tomitribe │ └── crest │ ├── OptionDescriptions.properties │ └── OptionDescriptions_en.properties └── toolz ├── pom.xml └── src ├── main ├── java │ └── org │ │ └── example │ │ └── toolz │ │ ├── AnyName.java │ │ ├── App.java │ │ └── IsFile.java └── resources │ ├── META-INF │ ├── LICENSE │ └── NOTICE │ └── org │ └── example │ └── toolz │ └── OptionDescriptions.properties └── test └── java └── org └── example └── toolz └── AppTest.java /.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/.drone.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/LICENSE -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/README.adoc -------------------------------------------------------------------------------- /crest-maven-plugin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/crest-maven-plugin/pom.xml -------------------------------------------------------------------------------- /crest-maven-plugin/src/main/java/org/tomitribe/crest/maven/CrestCommandLoaderDescriptorGeneratorMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/crest-maven-plugin/src/main/java/org/tomitribe/crest/maven/CrestCommandLoaderDescriptorGeneratorMojo.java -------------------------------------------------------------------------------- /crest-maven-plugin/src/test/java/org/tomitribe/crest/maven/CrestCommandLoaderDescriptorGeneratorMojoTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/crest-maven-plugin/src/test/java/org/tomitribe/crest/maven/CrestCommandLoaderDescriptorGeneratorMojoTest.java -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/pom.xml -------------------------------------------------------------------------------- /tomitribe-crest-api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-api/pom.xml -------------------------------------------------------------------------------- /tomitribe-crest-api/src/main/java/org/tomitribe/crest/api/Command.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-api/src/main/java/org/tomitribe/crest/api/Command.java -------------------------------------------------------------------------------- /tomitribe-crest-api/src/main/java/org/tomitribe/crest/api/CrestAnnotation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-api/src/main/java/org/tomitribe/crest/api/CrestAnnotation.java -------------------------------------------------------------------------------- /tomitribe-crest-api/src/main/java/org/tomitribe/crest/api/Default.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-api/src/main/java/org/tomitribe/crest/api/Default.java -------------------------------------------------------------------------------- /tomitribe-crest-api/src/main/java/org/tomitribe/crest/api/Defaults.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-api/src/main/java/org/tomitribe/crest/api/Defaults.java -------------------------------------------------------------------------------- /tomitribe-crest-api/src/main/java/org/tomitribe/crest/api/Editor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-api/src/main/java/org/tomitribe/crest/api/Editor.java -------------------------------------------------------------------------------- /tomitribe-crest-api/src/main/java/org/tomitribe/crest/api/Err.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-api/src/main/java/org/tomitribe/crest/api/Err.java -------------------------------------------------------------------------------- /tomitribe-crest-api/src/main/java/org/tomitribe/crest/api/Exit.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-api/src/main/java/org/tomitribe/crest/api/Exit.java -------------------------------------------------------------------------------- /tomitribe-crest-api/src/main/java/org/tomitribe/crest/api/GlobalOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-api/src/main/java/org/tomitribe/crest/api/GlobalOptions.java -------------------------------------------------------------------------------- /tomitribe-crest-api/src/main/java/org/tomitribe/crest/api/In.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-api/src/main/java/org/tomitribe/crest/api/In.java -------------------------------------------------------------------------------- /tomitribe-crest-api/src/main/java/org/tomitribe/crest/api/Loader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-api/src/main/java/org/tomitribe/crest/api/Loader.java -------------------------------------------------------------------------------- /tomitribe-crest-api/src/main/java/org/tomitribe/crest/api/NotAService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-api/src/main/java/org/tomitribe/crest/api/NotAService.java -------------------------------------------------------------------------------- /tomitribe-crest-api/src/main/java/org/tomitribe/crest/api/Option.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-api/src/main/java/org/tomitribe/crest/api/Option.java -------------------------------------------------------------------------------- /tomitribe-crest-api/src/main/java/org/tomitribe/crest/api/Options.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-api/src/main/java/org/tomitribe/crest/api/Options.java -------------------------------------------------------------------------------- /tomitribe-crest-api/src/main/java/org/tomitribe/crest/api/Out.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-api/src/main/java/org/tomitribe/crest/api/Out.java -------------------------------------------------------------------------------- /tomitribe-crest-api/src/main/java/org/tomitribe/crest/api/PrintOutput.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-api/src/main/java/org/tomitribe/crest/api/PrintOutput.java -------------------------------------------------------------------------------- /tomitribe-crest-api/src/main/java/org/tomitribe/crest/api/Required.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-api/src/main/java/org/tomitribe/crest/api/Required.java -------------------------------------------------------------------------------- /tomitribe-crest-api/src/main/java/org/tomitribe/crest/api/StreamingOutput.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-api/src/main/java/org/tomitribe/crest/api/StreamingOutput.java -------------------------------------------------------------------------------- /tomitribe-crest-api/src/main/java/org/tomitribe/crest/api/interceptor/CrestContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-api/src/main/java/org/tomitribe/crest/api/interceptor/CrestContext.java -------------------------------------------------------------------------------- /tomitribe-crest-api/src/main/java/org/tomitribe/crest/api/interceptor/CrestInterceptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-api/src/main/java/org/tomitribe/crest/api/interceptor/CrestInterceptor.java -------------------------------------------------------------------------------- /tomitribe-crest-api/src/main/java/org/tomitribe/crest/api/interceptor/ParameterMetadata.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-api/src/main/java/org/tomitribe/crest/api/interceptor/ParameterMetadata.java -------------------------------------------------------------------------------- /tomitribe-crest-api/src/main/java/org/tomitribe/crest/api/table/Border.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-api/src/main/java/org/tomitribe/crest/api/table/Border.java -------------------------------------------------------------------------------- /tomitribe-crest-api/src/main/java/org/tomitribe/crest/api/table/Table.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-api/src/main/java/org/tomitribe/crest/api/table/Table.java -------------------------------------------------------------------------------- /tomitribe-crest-api/src/main/java/org/tomitribe/crest/api/table/TableOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-api/src/main/java/org/tomitribe/crest/api/table/TableOptions.java -------------------------------------------------------------------------------- /tomitribe-crest-api/src/main/java/org/tomitribe/crest/api/validation/Validation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-api/src/main/java/org/tomitribe/crest/api/validation/Validation.java -------------------------------------------------------------------------------- /tomitribe-crest-archetype/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-archetype/pom.xml -------------------------------------------------------------------------------- /tomitribe-crest-archetype/src/main/resources/META-INF/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-archetype/src/main/resources/META-INF/LICENSE -------------------------------------------------------------------------------- /tomitribe-crest-archetype/src/main/resources/META-INF/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-archetype/src/main/resources/META-INF/NOTICE -------------------------------------------------------------------------------- /tomitribe-crest-archetype/src/main/resources/META-INF/archetype-post-generate.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-archetype/src/main/resources/META-INF/archetype-post-generate.groovy -------------------------------------------------------------------------------- /tomitribe-crest-archetype/src/main/resources/META-INF/maven/archetype-metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-archetype/src/main/resources/META-INF/maven/archetype-metadata.xml -------------------------------------------------------------------------------- /tomitribe-crest-archetype/src/main/resources/archetype-resources/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-archetype/src/main/resources/archetype-resources/README.adoc -------------------------------------------------------------------------------- /tomitribe-crest-archetype/src/main/resources/archetype-resources/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-archetype/src/main/resources/archetype-resources/pom.xml -------------------------------------------------------------------------------- /tomitribe-crest-archetype/src/main/resources/archetype-resources/src/main/java/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-archetype/src/main/resources/archetype-resources/src/main/java/App.java -------------------------------------------------------------------------------- /tomitribe-crest-archetype/src/main/resources/archetype-resources/src/main/java/FileEditor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-archetype/src/main/resources/archetype-resources/src/main/java/FileEditor.java -------------------------------------------------------------------------------- /tomitribe-crest-archetype/src/main/resources/archetype-resources/src/main/java/IsFile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-archetype/src/main/resources/archetype-resources/src/main/java/IsFile.java -------------------------------------------------------------------------------- /tomitribe-crest-archetype/src/main/resources/archetype-resources/src/test/java/AppTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-archetype/src/main/resources/archetype-resources/src/test/java/AppTest.java -------------------------------------------------------------------------------- /tomitribe-crest-arthur-extension/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-arthur-extension/pom.xml -------------------------------------------------------------------------------- /tomitribe-crest-arthur-extension/src/main/java/org/tomitribe/crest/arthur/CrestExtension.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-arthur-extension/src/main/java/org/tomitribe/crest/arthur/CrestExtension.java -------------------------------------------------------------------------------- /tomitribe-crest-arthur-extension/src/main/java/org/tomitribe/crest/arthur/feature/CrestFeature.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-arthur-extension/src/main/java/org/tomitribe/crest/arthur/feature/CrestFeature.java -------------------------------------------------------------------------------- /tomitribe-crest-arthur-extension/src/main/resources/META-INF/services/org.apache.geronimo.arthur.spi.ArthurExtension: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-arthur-extension/src/main/resources/META-INF/services/org.apache.geronimo.arthur.spi.ArthurExtension -------------------------------------------------------------------------------- /tomitribe-crest-arthur-extension/src/main/resources/META-INF/services/org.graalvm.compiler.options.OptionDescriptors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-arthur-extension/src/main/resources/META-INF/services/org.graalvm.compiler.options.OptionDescriptors -------------------------------------------------------------------------------- /tomitribe-crest-arthur-extension/src/test/java/org/tomitribe/crest/arthur/CrestExtensionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-arthur-extension/src/test/java/org/tomitribe/crest/arthur/CrestExtensionTest.java -------------------------------------------------------------------------------- /tomitribe-crest-cli/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-cli/pom.xml -------------------------------------------------------------------------------- /tomitribe-crest-cli/src/main/java/org/tomitribe/crest/cli/api/CliEnvironment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-cli/src/main/java/org/tomitribe/crest/cli/api/CliEnvironment.java -------------------------------------------------------------------------------- /tomitribe-crest-cli/src/main/java/org/tomitribe/crest/cli/api/CrestCli.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-cli/src/main/java/org/tomitribe/crest/cli/api/CrestCli.java -------------------------------------------------------------------------------- /tomitribe-crest-cli/src/main/java/org/tomitribe/crest/cli/api/InputReader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-cli/src/main/java/org/tomitribe/crest/cli/api/InputReader.java -------------------------------------------------------------------------------- /tomitribe-crest-cli/src/main/java/org/tomitribe/crest/cli/api/format/Table.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-cli/src/main/java/org/tomitribe/crest/cli/api/format/Table.java -------------------------------------------------------------------------------- /tomitribe-crest-cli/src/main/java/org/tomitribe/crest/cli/api/interceptor/base/ParameterVisitor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-cli/src/main/java/org/tomitribe/crest/cli/api/interceptor/base/ParameterVisitor.java -------------------------------------------------------------------------------- /tomitribe-crest-cli/src/main/java/org/tomitribe/crest/cli/api/interceptor/interactive/Interactivable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-cli/src/main/java/org/tomitribe/crest/cli/api/interceptor/interactive/Interactivable.java -------------------------------------------------------------------------------- /tomitribe-crest-cli/src/main/java/org/tomitribe/crest/cli/api/interceptor/interactive/InteractiveMissingParameters.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-cli/src/main/java/org/tomitribe/crest/cli/api/interceptor/interactive/InteractiveMissingParameters.java -------------------------------------------------------------------------------- /tomitribe-crest-cli/src/main/java/org/tomitribe/crest/cli/impl/CliEnv.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-cli/src/main/java/org/tomitribe/crest/cli/impl/CliEnv.java -------------------------------------------------------------------------------- /tomitribe-crest-cli/src/main/java/org/tomitribe/crest/cli/impl/CommandParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-cli/src/main/java/org/tomitribe/crest/cli/impl/CommandParser.java -------------------------------------------------------------------------------- /tomitribe-crest-cli/src/main/java/org/tomitribe/crest/cli/impl/command/JSonP.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-cli/src/main/java/org/tomitribe/crest/cli/impl/command/JSonP.java -------------------------------------------------------------------------------- /tomitribe-crest-cli/src/main/java/org/tomitribe/crest/cli/impl/command/Streams.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-cli/src/main/java/org/tomitribe/crest/cli/impl/command/Streams.java -------------------------------------------------------------------------------- /tomitribe-crest-cli/src/test/java/org/tomitribe/crest/cli/api/CrestCliTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-cli/src/test/java/org/tomitribe/crest/cli/api/CrestCliTest.java -------------------------------------------------------------------------------- /tomitribe-crest-cli/src/test/java/org/tomitribe/crest/cli/api/format/TableTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-cli/src/test/java/org/tomitribe/crest/cli/api/format/TableTest.java -------------------------------------------------------------------------------- /tomitribe-crest-cli/src/test/java/org/tomitribe/crest/cli/impl/CommandParserTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-cli/src/test/java/org/tomitribe/crest/cli/impl/CommandParserTest.java -------------------------------------------------------------------------------- /tomitribe-crest-generator/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-generator/pom.xml -------------------------------------------------------------------------------- /tomitribe-crest-generator/src/main/java/org/tomitribe/crest/generator/CrestBindingGeneratorProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-generator/src/main/java/org/tomitribe/crest/generator/CrestBindingGeneratorProcessor.java -------------------------------------------------------------------------------- /tomitribe-crest-generator/src/main/resources/META-INF/services/javax.annotation.processing.Processor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-generator/src/main/resources/META-INF/services/javax.annotation.processing.Processor -------------------------------------------------------------------------------- /tomitribe-crest-generator/src/test/java/org/tomitribe/crest/generator/CrestBindingGeneratorProcessorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-generator/src/test/java/org/tomitribe/crest/generator/CrestBindingGeneratorProcessorTest.java -------------------------------------------------------------------------------- /tomitribe-crest-test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-test/pom.xml -------------------------------------------------------------------------------- /tomitribe-crest-test/src/main/java/org/tomitribe/crest/test/Jar.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-test/src/main/java/org/tomitribe/crest/test/Jar.java -------------------------------------------------------------------------------- /tomitribe-crest-test/src/main/java/org/tomitribe/crest/test/Jars.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-test/src/main/java/org/tomitribe/crest/test/Jars.java -------------------------------------------------------------------------------- /tomitribe-crest-test/src/main/java/org/tomitribe/crest/test/Java.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-test/src/main/java/org/tomitribe/crest/test/Java.java -------------------------------------------------------------------------------- /tomitribe-crest-test/src/test/java/org/tomitribe/crest/test/Hello.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-test/src/test/java/org/tomitribe/crest/test/Hello.java -------------------------------------------------------------------------------- /tomitribe-crest-test/src/test/java/org/tomitribe/crest/test/JarTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-test/src/test/java/org/tomitribe/crest/test/JarTest.java -------------------------------------------------------------------------------- /tomitribe-crest-xbean/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-xbean/pom.xml -------------------------------------------------------------------------------- /tomitribe-crest-xbean/src/main/java/org/tomitribe/crest/xbean/ClasspathScanner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-xbean/src/main/java/org/tomitribe/crest/xbean/ClasspathScanner.java -------------------------------------------------------------------------------- /tomitribe-crest-xbean/src/main/java/org/tomitribe/crest/xbean/UberJarScanner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-xbean/src/main/java/org/tomitribe/crest/xbean/UberJarScanner.java -------------------------------------------------------------------------------- /tomitribe-crest-xbean/src/main/java/org/tomitribe/crest/xbean/XbeanScanningLoader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-xbean/src/main/java/org/tomitribe/crest/xbean/XbeanScanningLoader.java -------------------------------------------------------------------------------- /tomitribe-crest-xbean/src/main/resources/META-INF/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-xbean/src/main/resources/META-INF/LICENSE -------------------------------------------------------------------------------- /tomitribe-crest-xbean/src/main/resources/META-INF/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-xbean/src/main/resources/META-INF/NOTICE -------------------------------------------------------------------------------- /tomitribe-crest-xbean/src/main/resources/META-INF/services/org.tomitribe.crest.cmds.processors.Commands$Loader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-xbean/src/main/resources/META-INF/services/org.tomitribe.crest.cmds.processors.Commands$Loader -------------------------------------------------------------------------------- /tomitribe-crest-xbean/src/test/java/org/tomitribe/crest/xbean/XbeanScanningLoaderTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest-xbean/src/test/java/org/tomitribe/crest/xbean/XbeanScanningLoaderTest.java -------------------------------------------------------------------------------- /tomitribe-crest/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/pom.xml -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/BashCompletion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/BashCompletion.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/EditorLoader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/EditorLoader.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/Exec.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/Exec.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/Main.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/Manifest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/Manifest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/cmds/Arguments.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/cmds/Arguments.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/cmds/Cmd.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/cmds/Cmd.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/cmds/CmdGroup.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/cmds/CmdGroup.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/cmds/CmdMethod.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/cmds/CmdMethod.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/cmds/CommandFailedException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/cmds/CommandFailedException.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/cmds/Completer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/cmds/Completer.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/cmds/ComplexParam.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/cmds/ComplexParam.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/cmds/GlobalSpec.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/cmds/GlobalSpec.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/cmds/HelpPrintedException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/cmds/HelpPrintedException.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/cmds/MissingArgumentException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/cmds/MissingArgumentException.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/cmds/Needed.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/cmds/Needed.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/cmds/OverloadedCmdMethod.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/cmds/OverloadedCmdMethod.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/cmds/Spec.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/cmds/Spec.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/cmds/processors/Commands.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/cmds/processors/Commands.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/cmds/processors/Help.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/cmds/processors/Help.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/cmds/processors/Item.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/cmds/processors/Item.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/cmds/processors/OptionParam.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/cmds/processors/OptionParam.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/cmds/processors/Param.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/cmds/processors/Param.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/cmds/processors/types/PrimitiveTypes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/cmds/processors/types/PrimitiveTypes.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/cmds/targets/SimpleBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/cmds/targets/SimpleBean.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/cmds/targets/Substitution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/cmds/targets/Substitution.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/cmds/targets/Target.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/cmds/targets/Target.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/cmds/targets/TargetProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/cmds/targets/TargetProvider.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/cmds/utils/CommandLine.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/cmds/utils/CommandLine.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/contexts/DefaultsContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/contexts/DefaultsContext.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/contexts/EnvDefaultsContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/contexts/EnvDefaultsContext.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/contexts/SystemPropertiesDefaultsContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/contexts/SystemPropertiesDefaultsContext.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/environments/Environment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/environments/Environment.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/environments/SystemEnvironment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/environments/SystemEnvironment.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/help/Bullet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/help/Bullet.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/help/CommandJavadoc.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/help/CommandJavadoc.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/help/Document.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/help/Document.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/help/DocumentFormatter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/help/DocumentFormatter.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/help/DocumentParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/help/DocumentParser.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/help/Element.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/help/Element.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/help/Heading.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/help/Heading.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/help/HelpProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/help/HelpProcessor.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/help/Highlight.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/help/Highlight.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/help/HtmlDocumentParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/help/HtmlDocumentParser.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/help/IllegalElementException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/help/IllegalElementException.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/help/InvalidJavadocFileException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/help/InvalidJavadocFileException.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/help/Justify.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/help/Justify.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/help/Option.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/help/Option.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/help/Paragraph.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/help/Paragraph.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/help/Preformatted.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/help/Preformatted.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/help/Wrap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/help/Wrap.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/interceptor/InterceptorAnnotationNotFoundException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/interceptor/InterceptorAnnotationNotFoundException.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/interceptor/UnresolvedInterceptorAnnotationException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/interceptor/UnresolvedInterceptorAnnotationException.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/interceptor/internal/InternalInterceptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/interceptor/internal/InternalInterceptor.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/interceptor/internal/InternalInterceptorInvocationContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/interceptor/internal/InternalInterceptorInvocationContext.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/interceptor/security/RoleProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/interceptor/security/RoleProvider.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/interceptor/security/SecurityInterceptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/interceptor/security/SecurityInterceptor.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/javadoc/Javadoc.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/javadoc/Javadoc.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/javadoc/JavadocParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/javadoc/JavadocParser.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/lang/Substitutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/lang/Substitutor.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/table/Border.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/table/Border.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/table/Data.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/table/Data.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/table/Formatting.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/table/Formatting.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/table/Line.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/table/Line.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/table/Lines.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/table/Lines.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/table/Options.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/table/Options.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/table/Parts.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/table/Parts.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/table/Resize.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/table/Resize.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/table/Table.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/table/Table.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/table/TableInterceptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/table/TableInterceptor.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/table/TableOutput.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/table/TableOutput.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/table/Tables.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/table/Tables.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/table/Width.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/table/Width.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/term/Screen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/term/Screen.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/val/BVal05.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/val/BVal05.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/val/BeanValidation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/val/BeanValidation.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/val/BeanValidation11.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/val/BeanValidation11.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/val/BeanValidationImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/val/BeanValidationImpl.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/val/BeanValidationMessages.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/val/BeanValidationMessages.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/val/BuiltInValidation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/val/BuiltInValidation.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/val/ConstraintAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/val/ConstraintAdapter.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/val/Directory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/val/Directory.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/val/Executable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/val/Executable.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/val/Exists.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/val/Exists.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/val/Readable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/val/Readable.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/java/org/tomitribe/crest/val/Writable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/java/org/tomitribe/crest/val/Writable.java -------------------------------------------------------------------------------- /tomitribe-crest/src/main/resources/META-INF/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/resources/META-INF/LICENSE -------------------------------------------------------------------------------- /tomitribe-crest/src/main/resources/META-INF/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/resources/META-INF/NOTICE -------------------------------------------------------------------------------- /tomitribe-crest/src/main/resources/ValidationMessages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/resources/ValidationMessages.properties -------------------------------------------------------------------------------- /tomitribe-crest/src/main/resources/ValidationMessages_en.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/resources/ValidationMessages_en.properties -------------------------------------------------------------------------------- /tomitribe-crest/src/main/resources/ValidationMessages_pt_BR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/main/resources/ValidationMessages_pt_BR.properties -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/AdvancedArrayArgTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/AdvancedArrayArgTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/Archives.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/Archives.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/ArgArraysTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/ArgArraysTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/ArgListsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/ArgListsTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/BashCompletionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/BashCompletionTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/BeanValidationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/BeanValidationTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/BenInjectionPrefixTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/BenInjectionPrefixTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/BooleanOptionsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/BooleanOptionsTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/Cli.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/Cli.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/CmdMethodTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/CmdMethodTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/CommandNameAndVersionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/CommandNameAndVersionTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/CompleterTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/CompleterTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/Crest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/Crest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/DefaultInterpolationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/DefaultInterpolationTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/DefaultListOptionSplittingTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/DefaultListOptionSplittingTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/DefaultOptionListsAndOptionsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/DefaultOptionListsAndOptionsTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/DefaultOptionListsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/DefaultOptionListsTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/DefaultOptionsAndSuppliedArgsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/DefaultOptionsAndSuppliedArgsTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/DefaultSubstitutionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/DefaultSubstitutionTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/EditorInLoaderTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/EditorInLoaderTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/EnumOptionListTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/EnumOptionListTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/ExceptionHandlingTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/ExceptionHandlingTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/ExplicitPrimitiveOptionDefaultsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/ExplicitPrimitiveOptionDefaultsTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/Foo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/Foo.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/GlobalOptionsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/GlobalOptionsTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/HelpTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/HelpTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/HelpWithInnerOptionsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/HelpWithInnerOptionsTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/ImplicitPrimitiveOptionDefaultsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/ImplicitPrimitiveOptionDefaultsTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/InterceptorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/InterceptorTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/Java.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/Java.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/MainBuilderTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/MainBuilderTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/MainTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/MainTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/ManifestTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/ManifestTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/ManyOptionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/ManyOptionTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/MissingArgumentTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/MissingArgumentTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/NullableOptionsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/NullableOptionsTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/OptionArraysTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/OptionArraysTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/OptionListsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/OptionListsTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/OptionsObjectAdvancedArrayArgTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/OptionsObjectAdvancedArrayArgTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/OptionsObjectTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/OptionsObjectTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/OptionsObjectValidationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/OptionsObjectValidationTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/OptionsUsageTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/OptionsUsageTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/OverloadedCmdHelpTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/OverloadedCmdHelpTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/OverloadedCmdMethodTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/OverloadedCmdMethodTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/PluggableDefaultParsingTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/PluggableDefaultParsingTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/PluggableTargetTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/PluggableTargetTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/PrimitiveTypesTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/PrimitiveTypesTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/ServiceInjectionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/ServiceInjectionTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/SomeOptionsAndSuppliedArgsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/SomeOptionsAndSuppliedArgsTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/StreamInjectionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/StreamInjectionTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/SubCommandsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/SubCommandsTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/SubstitutionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/SubstitutionTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/SupportedCollectionTypesTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/SupportedCollectionTypesTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/SystemPropertiesTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/SystemPropertiesTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/ValidationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/ValidationTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/VarargStreamTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/VarargStreamTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/cmds/ArgumentsSplitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/cmds/ArgumentsSplitTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/cmds/GlobalSpecTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/cmds/GlobalSpecTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/cmds/utils/CommandLineTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/cmds/utils/CommandLineTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/help/AuthorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/help/AuthorTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/help/DefaultsShownTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/help/DefaultsShownTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/help/DocumentFormatterTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/help/DocumentFormatterTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/help/DocumentParserTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/help/DocumentParserTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/help/GenericsInMethodSignatureTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/help/GenericsInMethodSignatureTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/help/HighlightTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/help/HighlightTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/help/JavadocHelpComplexTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/help/JavadocHelpComplexTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/help/JustifyTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/help/JustifyTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/help/ManualTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/help/ManualTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/help/ParamWithPreformattedTextTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/help/ParamWithPreformattedTextTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/help/RsyncManPage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/help/RsyncManPage.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/help/SeeAlsoTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/help/SeeAlsoTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/help/SubcommandTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/help/SubcommandTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/help/TestEnvironment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/help/TestEnvironment.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/help/WrapTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/help/WrapTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/interceptor/CustomInterceptorAnnotationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/interceptor/CustomInterceptorAnnotationTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/interceptor/security/SecurityInterceptorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/interceptor/security/SecurityInterceptorTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/javadoc/JavadocParserTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/javadoc/JavadocParserTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/returns/ReturnStringArrayArrayTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/returns/ReturnStringArrayArrayTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/table/DataTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/table/DataTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/table/FormattingItemTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/table/FormattingItemTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/table/FormattingTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/table/FormattingTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/table/PartsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/table/PartsTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/table/TableBorderNoHeaderTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/table/TableBorderNoHeaderTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/table/TableBorderTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/table/TableBorderTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/table/TableFieldsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/table/TableFieldsTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/table/TableHeaderTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/table/TableHeaderTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/table/TableOptionsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/table/TableOptionsTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/table/TableSortTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/table/TableSortTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/table/TableTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/table/TableTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/table/TableWrappingTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/table/TableWrappingTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/table/WidthTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/table/WidthTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/util/ConverterTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/util/ConverterTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/util/DurationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/util/DurationTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/util/SizeTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/util/SizeTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/util/SizeUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/util/SizeUnitTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/java/org/tomitribe/crest/util/TimeUtilsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/java/org/tomitribe/crest/util/TimeUtilsTest.java -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/TableBorderNoHeaderTest/asciiCompact.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/TableBorderNoHeaderTest/asciiCompact.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/TableBorderNoHeaderTest/asciiDots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/TableBorderNoHeaderTest/asciiDots.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/TableBorderNoHeaderTest/asciiSeparated.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/TableBorderNoHeaderTest/asciiSeparated.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/TableBorderNoHeaderTest/githubMarkdown.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/TableBorderNoHeaderTest/githubMarkdown.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/TableBorderNoHeaderTest/mysqlStyle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/TableBorderNoHeaderTest/mysqlStyle.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/TableBorderNoHeaderTest/reStructuredTextGrid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/TableBorderNoHeaderTest/reStructuredTextGrid.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/TableBorderNoHeaderTest/reStructuredTextSimple.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/TableBorderNoHeaderTest/reStructuredTextSimple.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/TableBorderNoHeaderTest/redditMarkdown.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/TableBorderNoHeaderTest/redditMarkdown.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/TableBorderNoHeaderTest/unicodeDouble.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/TableBorderNoHeaderTest/unicodeDouble.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/TableBorderNoHeaderTest/unicodeSingle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/TableBorderNoHeaderTest/unicodeSingle.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/TableBorderNoHeaderTest/unicodeSingleSeparated.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/TableBorderNoHeaderTest/unicodeSingleSeparated.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/TableBorderNoHeaderTest/whitespaceCompact.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/TableBorderNoHeaderTest/whitespaceCompact.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/TableBorderNoHeaderTest/whitespaceSeparated.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/TableBorderNoHeaderTest/whitespaceSeparated.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/TableBorderTest/asciiCompact.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/TableBorderTest/asciiCompact.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/TableBorderTest/asciiDots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/TableBorderTest/asciiDots.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/TableBorderTest/asciiSeparated.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/TableBorderTest/asciiSeparated.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/TableBorderTest/githubMarkdown.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/TableBorderTest/githubMarkdown.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/TableBorderTest/mysqlStyle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/TableBorderTest/mysqlStyle.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/TableBorderTest/reStructuredTextGrid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/TableBorderTest/reStructuredTextGrid.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/TableBorderTest/reStructuredTextSimple.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/TableBorderTest/reStructuredTextSimple.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/TableBorderTest/redditMarkdown.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/TableBorderTest/redditMarkdown.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/TableBorderTest/unicodeDouble.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/TableBorderTest/unicodeDouble.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/TableBorderTest/unicodeSingle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/TableBorderTest/unicodeSingle.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/TableBorderTest/unicodeSingleSeparated.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/TableBorderTest/unicodeSingleSeparated.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/TableBorderTest/whitespaceCompact.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/TableBorderTest/whitespaceCompact.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/TableBorderTest/whitespaceSeparated.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/TableBorderTest/whitespaceSeparated.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/completion/booleanoption.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/completion/booleanoption.sh -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/completion/defaults.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/completion/defaults.sh -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/completion/enums.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/completion/enums.sh -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/completion/foo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/completion/foo.sh -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/completion/groups.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/completion/groups.sh -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/completion/overloaded.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/completion/overloaded.sh -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.AdvancedArrayArgTest$OneExtra_copy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.AdvancedArrayArgTest$OneExtra_copy.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.AdvancedArrayArgTest$RequiredList_copy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.AdvancedArrayArgTest$RequiredList_copy.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.AdvancedArrayArgTest$TwoExtra_copy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.AdvancedArrayArgTest$TwoExtra_copy.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ArgArraysTest$Commands_doBoolean.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ArgArraysTest$Commands_doBoolean.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ArgArraysTest$Commands_doByte.txt: -------------------------------------------------------------------------------- 1 | 2 | Usage: doByte byte... 3 | 4 | -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ArgArraysTest$Commands_doChar.txt: -------------------------------------------------------------------------------- 1 | 2 | Usage: doChar char... 3 | 4 | -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ArgArraysTest$Commands_doDouble.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ArgArraysTest$Commands_doDouble.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ArgArraysTest$Commands_doFloat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ArgArraysTest$Commands_doFloat.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ArgArraysTest$Commands_doInt.txt: -------------------------------------------------------------------------------- 1 | 2 | Usage: doInt int... 3 | 4 | -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ArgArraysTest$Commands_doLong.txt: -------------------------------------------------------------------------------- 1 | 2 | Usage: doLong long... 3 | 4 | -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ArgArraysTest$Commands_doShort.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ArgArraysTest$Commands_doShort.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ArgArraysTest$Commands_doString.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ArgArraysTest$Commands_doString.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ArgArraysTest$Commands_doURI.txt: -------------------------------------------------------------------------------- 1 | 2 | Usage: doURI URI... 3 | 4 | -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ArgListsTest$Commands_doBoolean.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ArgListsTest$Commands_doBoolean.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ArgListsTest$Commands_doByte.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ArgListsTest$Commands_doByte.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ArgListsTest$Commands_doCharacter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ArgListsTest$Commands_doCharacter.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ArgListsTest$Commands_doDouble.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ArgListsTest$Commands_doDouble.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ArgListsTest$Commands_doFloat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ArgListsTest$Commands_doFloat.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ArgListsTest$Commands_doInt.txt: -------------------------------------------------------------------------------- 1 | 2 | Usage: doInt Integer... 3 | 4 | -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ArgListsTest$Commands_doLong.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ArgListsTest$Commands_doLong.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ArgListsTest$Commands_doShort.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ArgListsTest$Commands_doShort.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ArgListsTest$Commands_doString.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ArgListsTest$Commands_doString.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ArgListsTest$Commands_doURI.txt: -------------------------------------------------------------------------------- 1 | 2 | Usage: doURI URI... 3 | 4 | -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.BeanValidationTest$Duplicates_check.txt: -------------------------------------------------------------------------------- 1 | 2 | Usage: check File 3 | 4 | -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.BeanValidationTest$Duplicates_empty.txt: -------------------------------------------------------------------------------- 1 | 2 | Usage: empty String 3 | 4 | -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.BooleanOptionsTest$Commands_object.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.BooleanOptionsTest$Commands_object.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.BooleanOptionsTest$Commands_object2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.BooleanOptionsTest$Commands_object2.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.BooleanOptionsTest$Commands_object3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.BooleanOptionsTest$Commands_object3.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.BooleanOptionsTest$Commands_primitive.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.BooleanOptionsTest$Commands_primitive.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.BooleanOptionsTest$Commands_primitive2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.BooleanOptionsTest$Commands_primitive2.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.BooleanOptionsTest$Commands_primitive3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.BooleanOptionsTest$Commands_primitive3.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.CmdMethodTest$Commands_booleanOption.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.CmdMethodTest$Commands_booleanOption.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.CmdMethodTest$Commands_cat.txt: -------------------------------------------------------------------------------- 1 | 2 | Usage: cat File 3 | 4 | -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.CmdMethodTest$Commands_ls.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.CmdMethodTest$Commands_ls.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.CmdMethodTest$Commands_prefixed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.CmdMethodTest$Commands_prefixed.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.CmdMethodTest$Commands_required.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.CmdMethodTest$Commands_required.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.CmdMethodTest$Commands_set.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.CmdMethodTest$Commands_set.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.CmdMethodTest$Commands_tail.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.CmdMethodTest$Commands_tail.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.CmdMethodTest$Commands_tar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.CmdMethodTest$Commands_tar.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.CmdMethodTest$Commands_touch.txt: -------------------------------------------------------------------------------- 1 | 2 | Usage: touch File 3 | 4 | -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.CompleterTest$Copy_copy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.CompleterTest$Copy_copy.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.CompleterTest$Foo_blue.txt: -------------------------------------------------------------------------------- 1 | 2 | Usage: blue 3 | 4 | -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.CompleterTest$Foo_green.txt: -------------------------------------------------------------------------------- 1 | 2 | Usage: green 3 | 4 | -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.CompleterTest$Foo_red.txt: -------------------------------------------------------------------------------- 1 | 2 | Usage: red 3 | 4 | -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.CompleterTest$Git_git.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.CompleterTest$Git_git.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.CompleterTest$Git_git_push.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.CompleterTest$Git_git_push.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.CompleterTest$Svn_svn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.CompleterTest$Svn_svn.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.CompleterTest$Svn_svn_checkout.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.CompleterTest$Svn_svn_checkout.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.CompleterTest$Svn_svn_commit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.CompleterTest$Svn_svn_commit.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultListOptionSplittingTest$Commands_onComma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultListOptionSplittingTest$Commands_onComma.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultListOptionSplittingTest$Commands_onTab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultListOptionSplittingTest$Commands_onTab.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultListOptionSplittingTest$Commands_onUnicode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultListOptionSplittingTest$Commands_onUnicode.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultListOptionSplittingTest$Commands_onlyBeforeSubstition.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultListOptionSplittingTest$Commands_onlyBeforeSubstition.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultOptionListsAndOptionsTest$Commands_doBoolean.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultOptionListsAndOptionsTest$Commands_doBoolean.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultOptionListsAndOptionsTest$Commands_doByte.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultOptionListsAndOptionsTest$Commands_doByte.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultOptionListsAndOptionsTest$Commands_doCharacter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultOptionListsAndOptionsTest$Commands_doCharacter.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultOptionListsAndOptionsTest$Commands_doDouble.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultOptionListsAndOptionsTest$Commands_doDouble.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultOptionListsAndOptionsTest$Commands_doFloat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultOptionListsAndOptionsTest$Commands_doFloat.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultOptionListsAndOptionsTest$Commands_doInt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultOptionListsAndOptionsTest$Commands_doInt.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultOptionListsAndOptionsTest$Commands_doLong.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultOptionListsAndOptionsTest$Commands_doLong.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultOptionListsAndOptionsTest$Commands_doShort.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultOptionListsAndOptionsTest$Commands_doShort.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultOptionListsAndOptionsTest$Commands_doString.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultOptionListsAndOptionsTest$Commands_doString.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultOptionListsAndOptionsTest$Commands_doURI.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultOptionListsAndOptionsTest$Commands_doURI.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultOptionListsTest$Commands_doBoolean.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultOptionListsTest$Commands_doBoolean.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultOptionListsTest$Commands_doByte.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultOptionListsTest$Commands_doByte.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultOptionListsTest$Commands_doCharacter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultOptionListsTest$Commands_doCharacter.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultOptionListsTest$Commands_doDouble.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultOptionListsTest$Commands_doDouble.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultOptionListsTest$Commands_doFloat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultOptionListsTest$Commands_doFloat.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultOptionListsTest$Commands_doInt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultOptionListsTest$Commands_doInt.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultOptionListsTest$Commands_doLong.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultOptionListsTest$Commands_doLong.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultOptionListsTest$Commands_doShort.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultOptionListsTest$Commands_doShort.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultOptionListsTest$Commands_doString.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultOptionListsTest$Commands_doString.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultOptionListsTest$Commands_doURI.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultOptionListsTest$Commands_doURI.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultOptionsAndSuppliedArgsTest$Commands_doBoolean.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultOptionsAndSuppliedArgsTest$Commands_doBoolean.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultOptionsAndSuppliedArgsTest$Commands_doByte.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultOptionsAndSuppliedArgsTest$Commands_doByte.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultOptionsAndSuppliedArgsTest$Commands_doChar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultOptionsAndSuppliedArgsTest$Commands_doChar.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultOptionsAndSuppliedArgsTest$Commands_doDouble.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultOptionsAndSuppliedArgsTest$Commands_doDouble.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultOptionsAndSuppliedArgsTest$Commands_doFloat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultOptionsAndSuppliedArgsTest$Commands_doFloat.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultOptionsAndSuppliedArgsTest$Commands_doInt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultOptionsAndSuppliedArgsTest$Commands_doInt.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultOptionsAndSuppliedArgsTest$Commands_doLong.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultOptionsAndSuppliedArgsTest$Commands_doLong.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultOptionsAndSuppliedArgsTest$Commands_doMixed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultOptionsAndSuppliedArgsTest$Commands_doMixed.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultOptionsAndSuppliedArgsTest$Commands_doShort.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultOptionsAndSuppliedArgsTest$Commands_doShort.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultOptionsAndSuppliedArgsTest$Commands_doString.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultOptionsAndSuppliedArgsTest$Commands_doString.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultOptionsAndSuppliedArgsTest$Commands_doURI.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultOptionsAndSuppliedArgsTest$Commands_doURI.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultSubstitutionTest$Commands_doAllExplicit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultSubstitutionTest$Commands_doAllExplicit.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultSubstitutionTest$Commands_doRelyOnDefaults.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.DefaultSubstitutionTest$Commands_doRelyOnDefaults.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.EnumOptionListTest$Commands_array.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.EnumOptionListTest$Commands_array.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.EnumOptionListTest$Commands_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.EnumOptionListTest$Commands_list.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ExplicitPrimitiveOptionDefaultsTest$Commands_doAll.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ExplicitPrimitiveOptionDefaultsTest$Commands_doAll.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ExplicitPrimitiveOptionDefaultsTest$Commands_doBoolean.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ExplicitPrimitiveOptionDefaultsTest$Commands_doBoolean.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ExplicitPrimitiveOptionDefaultsTest$Commands_doByte.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ExplicitPrimitiveOptionDefaultsTest$Commands_doByte.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ExplicitPrimitiveOptionDefaultsTest$Commands_doChar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ExplicitPrimitiveOptionDefaultsTest$Commands_doChar.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ExplicitPrimitiveOptionDefaultsTest$Commands_doDouble.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ExplicitPrimitiveOptionDefaultsTest$Commands_doDouble.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ExplicitPrimitiveOptionDefaultsTest$Commands_doFloat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ExplicitPrimitiveOptionDefaultsTest$Commands_doFloat.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ExplicitPrimitiveOptionDefaultsTest$Commands_doInt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ExplicitPrimitiveOptionDefaultsTest$Commands_doInt.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ExplicitPrimitiveOptionDefaultsTest$Commands_doLong.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ExplicitPrimitiveOptionDefaultsTest$Commands_doLong.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ExplicitPrimitiveOptionDefaultsTest$Commands_doShort.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ExplicitPrimitiveOptionDefaultsTest$Commands_doShort.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.HelpTest$DefaultsAndEnums_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.HelpTest$DefaultsAndEnums_test.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.HelpTest$Git_git.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.HelpTest$Git_git.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.HelpTest$Git_git_pull.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.HelpTest$Git_git_pull.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.HelpTest$Git_git_push.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.HelpTest$Git_git_push.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.HelpTest$OptionLists_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.HelpTest$OptionLists_test.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.HelpTest$Rsync_rsync.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.HelpTest$Rsync_rsync.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.HelpWithInnerOptionsTest$DefaultsAndEnums_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.HelpWithInnerOptionsTest$DefaultsAndEnums_test.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.HelpWithInnerOptionsTest$OptionLists_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.HelpWithInnerOptionsTest$OptionLists_test.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.HelpWithInnerOptionsTest$Rsync_rsync.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.HelpWithInnerOptionsTest$Rsync_rsync.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ImplicitPrimitiveOptionDefaultsTest$Commands_doAll.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ImplicitPrimitiveOptionDefaultsTest$Commands_doAll.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ImplicitPrimitiveOptionDefaultsTest$Commands_doBoolean.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ImplicitPrimitiveOptionDefaultsTest$Commands_doBoolean.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ImplicitPrimitiveOptionDefaultsTest$Commands_doByte.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ImplicitPrimitiveOptionDefaultsTest$Commands_doByte.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ImplicitPrimitiveOptionDefaultsTest$Commands_doChar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ImplicitPrimitiveOptionDefaultsTest$Commands_doChar.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ImplicitPrimitiveOptionDefaultsTest$Commands_doDouble.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ImplicitPrimitiveOptionDefaultsTest$Commands_doDouble.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ImplicitPrimitiveOptionDefaultsTest$Commands_doFloat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ImplicitPrimitiveOptionDefaultsTest$Commands_doFloat.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ImplicitPrimitiveOptionDefaultsTest$Commands_doInt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ImplicitPrimitiveOptionDefaultsTest$Commands_doInt.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ImplicitPrimitiveOptionDefaultsTest$Commands_doLong.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ImplicitPrimitiveOptionDefaultsTest$Commands_doLong.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ImplicitPrimitiveOptionDefaultsTest$Commands_doShort.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ImplicitPrimitiveOptionDefaultsTest$Commands_doShort.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.MainTest$Foo_blue.txt: -------------------------------------------------------------------------------- 1 | 2 | Usage: blue 3 | 4 | -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.MainTest$Foo_green.txt: -------------------------------------------------------------------------------- 1 | 2 | Usage: green 3 | 4 | -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.MainTest$Foo_red.txt: -------------------------------------------------------------------------------- 1 | 2 | Usage: red 3 | 4 | -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ManyOptionTest$Commands_doString.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ManyOptionTest$Commands_doString.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ManyOptionTest$Commands_rsync.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.ManyOptionTest$Commands_rsync.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionArraysTest$Commands_doBoolean.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionArraysTest$Commands_doBoolean.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionArraysTest$Commands_doByte.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionArraysTest$Commands_doByte.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionArraysTest$Commands_doChar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionArraysTest$Commands_doChar.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionArraysTest$Commands_doDouble.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionArraysTest$Commands_doDouble.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionArraysTest$Commands_doFloat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionArraysTest$Commands_doFloat.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionArraysTest$Commands_doInt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionArraysTest$Commands_doInt.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionArraysTest$Commands_doLong.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionArraysTest$Commands_doLong.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionArraysTest$Commands_doShort.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionArraysTest$Commands_doShort.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionArraysTest$Commands_doString.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionArraysTest$Commands_doString.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionArraysTest$Commands_doURI.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionArraysTest$Commands_doURI.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionListsTest$Commands_doBoolean.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionListsTest$Commands_doBoolean.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionListsTest$Commands_doByte.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionListsTest$Commands_doByte.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionListsTest$Commands_doCharacter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionListsTest$Commands_doCharacter.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionListsTest$Commands_doDouble.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionListsTest$Commands_doDouble.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionListsTest$Commands_doFloat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionListsTest$Commands_doFloat.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionListsTest$Commands_doInt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionListsTest$Commands_doInt.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionListsTest$Commands_doLong.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionListsTest$Commands_doLong.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionListsTest$Commands_doShort.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionListsTest$Commands_doShort.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionListsTest$Commands_doString.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionListsTest$Commands_doString.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionListsTest$Commands_doURI.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionListsTest$Commands_doURI.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionsObjectAdvancedArrayArgTest$Commands_args.txt: -------------------------------------------------------------------------------- 1 | 2 | Usage: args [options] String URI 3 | 4 | -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionsObjectAdvancedArrayArgTest$Commands_complex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionsObjectAdvancedArrayArgTest$Commands_complex.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionsObjectAdvancedArrayArgTest$Commands_complex2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionsObjectAdvancedArrayArgTest$Commands_complex2.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionsObjectAdvancedArrayArgTest$Commands_complex3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionsObjectAdvancedArrayArgTest$Commands_complex3.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionsObjectAdvancedArrayArgTest$Commands_complex4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionsObjectAdvancedArrayArgTest$Commands_complex4.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionsObjectAdvancedArrayArgTest$Commands_complex5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionsObjectAdvancedArrayArgTest$Commands_complex5.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionsObjectAdvancedArrayArgTest$Commands_mixed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionsObjectAdvancedArrayArgTest$Commands_mixed.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionsObjectAdvancedArrayArgTest$Commands_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionsObjectAdvancedArrayArgTest$Commands_options.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionsObjectAdvancedArrayArgTest$Commands_optionsAndArgs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionsObjectAdvancedArrayArgTest$Commands_optionsAndArgs.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionsObjectAdvancedArrayArgTest$Commands_simple.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionsObjectAdvancedArrayArgTest$Commands_simple.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionsObjectAdvancedArrayArgTest$Commands_twoBeans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionsObjectAdvancedArrayArgTest$Commands_twoBeans.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionsObjectTest$Commands_args.txt: -------------------------------------------------------------------------------- 1 | 2 | Usage: args [options] String URI 3 | 4 | -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionsObjectTest$Commands_mixed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionsObjectTest$Commands_mixed.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionsObjectTest$Commands_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionsObjectTest$Commands_options.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionsObjectTest$Commands_optionsAndArgs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionsObjectTest$Commands_optionsAndArgs.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionsObjectTest$Commands_twoBeans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionsObjectTest$Commands_twoBeans.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionsObjectValidationTest$Commands_validation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OptionsObjectValidationTest$Commands_validation.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OverloadedCmdMethodTest$TestCommands_help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.OverloadedCmdMethodTest$TestCommands_help.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.PluggableDefaultParsingTest$Orange_defaults.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.PluggableDefaultParsingTest$Orange_defaults.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.PluggableDefaultParsingTest$Orange_property.txt: -------------------------------------------------------------------------------- 1 | 2 | Usage: property String 3 | 4 | -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.SomeOptionsAndSuppliedArgsTest$Commands_doBoolean.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.SomeOptionsAndSuppliedArgsTest$Commands_doBoolean.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.SomeOptionsAndSuppliedArgsTest$Commands_doByte.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.SomeOptionsAndSuppliedArgsTest$Commands_doByte.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.SomeOptionsAndSuppliedArgsTest$Commands_doChar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.SomeOptionsAndSuppliedArgsTest$Commands_doChar.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.SomeOptionsAndSuppliedArgsTest$Commands_doDouble.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.SomeOptionsAndSuppliedArgsTest$Commands_doDouble.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.SomeOptionsAndSuppliedArgsTest$Commands_doFloat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.SomeOptionsAndSuppliedArgsTest$Commands_doFloat.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.SomeOptionsAndSuppliedArgsTest$Commands_doInt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.SomeOptionsAndSuppliedArgsTest$Commands_doInt.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.SomeOptionsAndSuppliedArgsTest$Commands_doLong.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.SomeOptionsAndSuppliedArgsTest$Commands_doLong.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.SomeOptionsAndSuppliedArgsTest$Commands_doMixed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.SomeOptionsAndSuppliedArgsTest$Commands_doMixed.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.SomeOptionsAndSuppliedArgsTest$Commands_doShort.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.SomeOptionsAndSuppliedArgsTest$Commands_doShort.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.SomeOptionsAndSuppliedArgsTest$Commands_doString.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.SomeOptionsAndSuppliedArgsTest$Commands_doString.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.SomeOptionsAndSuppliedArgsTest$Commands_doURI.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.SomeOptionsAndSuppliedArgsTest$Commands_doURI.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.SubCommandsTest$Git_git.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.SubCommandsTest$Git_git.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.SubCommandsTest$Git_git_pull.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.SubCommandsTest$Git_git_pull.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.SubCommandsTest$Git_git_push.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.SubCommandsTest$Git_git_push.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.SystemPropertiesTest$Orange_defaults.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/help/org.tomitribe.crest.SystemPropertiesTest$Orange_defaults.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/help/org.tomitribe.crest.SystemPropertiesTest$Orange_property.txt: -------------------------------------------------------------------------------- 1 | 2 | Usage: property String 3 | 4 | -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/man/expected-106.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/man/expected-106.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/man/expected-178.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/man/expected-178.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/man/expected-86.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/man/expected-86.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/man/input-markdown.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/man/input-markdown.txt -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/org/tomitribe/crest/OptionDescriptions.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/org/tomitribe/crest/OptionDescriptions.properties -------------------------------------------------------------------------------- /tomitribe-crest/src/test/resources/org/tomitribe/crest/OptionDescriptions_en.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/tomitribe-crest/src/test/resources/org/tomitribe/crest/OptionDescriptions_en.properties -------------------------------------------------------------------------------- /toolz/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/toolz/pom.xml -------------------------------------------------------------------------------- /toolz/src/main/java/org/example/toolz/AnyName.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/toolz/src/main/java/org/example/toolz/AnyName.java -------------------------------------------------------------------------------- /toolz/src/main/java/org/example/toolz/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/toolz/src/main/java/org/example/toolz/App.java -------------------------------------------------------------------------------- /toolz/src/main/java/org/example/toolz/IsFile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/toolz/src/main/java/org/example/toolz/IsFile.java -------------------------------------------------------------------------------- /toolz/src/main/resources/META-INF/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/toolz/src/main/resources/META-INF/LICENSE -------------------------------------------------------------------------------- /toolz/src/main/resources/META-INF/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/toolz/src/main/resources/META-INF/NOTICE -------------------------------------------------------------------------------- /toolz/src/main/resources/org/example/toolz/OptionDescriptions.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/toolz/src/main/resources/org/example/toolz/OptionDescriptions.properties -------------------------------------------------------------------------------- /toolz/src/test/java/org/example/toolz/AppTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomitribe/crest/HEAD/toolz/src/test/java/org/example/toolz/AppTest.java --------------------------------------------------------------------------------