Move shell completion logic to Java

Refactor bash shell completion to move the majority of the logic into
the Java code. This commit also removes the need for the '--' prefix on
every command.
This commit is contained in:
Phillip Webb
2013-11-07 17:45:22 -08:00
parent 202e32425e
commit ff635cf75b
11 changed files with 364 additions and 66 deletions

View File

@@ -22,6 +22,8 @@ import static org.hamcrest.Matchers.containsString;
import static org.junit.Assert.assertThat;
/**
* Tests for {@link OptionParsingCommand}.
*
* @author Dave Syer
*/
public class OptionParsingCommandTests {