docopt.java icon indicating copy to clipboard operation
docopt.java copied to clipboard

Java port of docopt

Results 9 docopt.java issues
Sort by recently updated
recently updated
newest added

The following parses correctly on t[ry.docopt.org](http://try.docopt.org) but using `docopt.java` fails to recognize the options after `-h` as options. ``` Usage: traffic_monitor [options] Options: -v, --version Print the version information. -h,...

Error occurs while generating javadoc because of a self-closing element (namely ``). Fix: changed `` to``.

This is according to http://try.docopt.org/ a valid docopt string but does not yet work with the java-version ``` Usage: jl status [options] [] Main Options: --report Create an html report...

Docopt.java should be published to the maven central repository for use by other applications.

In contrast to other docopt implementaions, docopt.java requires a leading space for options. E.g. this won't work but should imho ``` Usage: my_prog [options] FILE Options: --sorted some fancy sorting...

Initial text in usage file is not ouput as part of usage. Given a usage text of ``` Insert data into a solr cloud instance that is already up and...

In order to publish artifacts to Maven Central via the Sonatype OSSRH route, certain sections must be added to the pom. One is the OSSRH parent pom, which contains the...

This patch allows an argument that matches the regex /\\-\d/ not to be recognized as an "option" and treated as an "argument" instead. Normally this does not work unless you...