clap/clap-tests
Kevin K 0cc2f69839 feat(arg): allow other types besides Vec for multiple value settings
Breaking Change

Instead of requiring a Vec<&str> for various Arg::*_all() and
Arg::possible_values() methods this
commit now requires a generic IntoIterator<Item=AsRef<str>> which allows
things such as constant arrays. This change requires that any
Arg::*_all() methods be changed from vec!["val", "val"] -> let vals =
["val", "val"]; some_arg.possible_values(&vals) (or vals.iter()).

Closes #87
2015-04-29 17:52:13 -04:00
..
src feat(arg): allow other types besides Vec for multiple value settings 2015-04-29 17:52:13 -04:00
.gitignore chore(tests): rename claptests->clap-tests 2015-04-08 17:10:59 -04:00
Cargo.toml fix(tests): fix failing doc tests 2015-04-13 15:03:22 -04:00
Makefile chore(tests): rename claptests->clap-tests 2015-04-08 17:10:59 -04:00
run_tests.py tests(run_test.py): update tests to new error msgs 2015-04-27 00:54:21 -04:00