Kevin K.
6874d4cabb
Merge pull request #94 from kbknapp/rustfmt
...
Formats all source using rustfmt
2015-05-01 13:54:03 -04:00
Kevin K
82b0c5c3d7
docs(macros.rs): fixes doc tests
2015-05-01 14:50:28 -04:00
Kevin K
22aef2ab45
style(clap): rustfmt run
2015-05-01 14:44:20 -04:00
Kevin K
08635e6b5e
style(clap): makes changes to follow Rust style guide
2015-05-01 14:43:26 -04:00
Kevin K
72c1110f07
chore(.gitignore): adds backup files
2015-05-01 13:36:46 -04:00
Kevin K.
aa1a1f8813
Merge pull request #93 from Byron/master
...
chore(cargo): fix documentation URL
2015-05-01 11:42:19 -04:00
Sebastian Thiel
2126525ccc
chore(cargo): fix documentation URL
2015-05-01 17:13:41 +02:00
Kevin K
1f1fc04e1e
docs(arg.rs): improves docs and fix typos
2015-05-01 10:19:19 -04:00
Kevin K
9fa6ea7cc6
chore(clap): increase version
2015-04-30 22:21:23 -04:00
Kevin K
86d92c9fdb
fix(MultipleValues): stops evaluating values if the max or exact number of values was reached
2015-04-30 22:17:10 -04:00
Kevin K
82d03638d3
docs(lib.rs): fix doc tests
2015-04-30 20:43:22 -04:00
Kevin K
ace479a11c
docs(README.md): update links
2015-04-30 20:13:59 -04:00
Kevin K
0d123a0d86
docs(clap): update docs
2015-04-30 20:13:01 -04:00
Kevin K
abc31077b0
chore(clap): increase version
2015-04-30 19:59:45 -04:00
Kevin K
e75f304222
docs(README.md): adds breaking changes, deprecations, and new features
2015-04-30 19:58:34 -04:00
Kevin K.
9addfbb928
Merge pull request #91 from kbknapp/patch-88
...
Adds support for #88
Closes #89
Closes #88
Closes #82
2015-04-30 19:41:12 -04:00
Kevin K
cf7f6c80cd
tests(usage): update known good tests to new usage strings
2015-04-30 19:32:51 -04:00
Kevin K
53f6b8c9d8
feat(MultipleValues): add support for minimum and maximum number of values
2015-04-30 19:32:51 -04:00
Kevin K
ae09f05e92
feat(MultipleValues): adds support limited number and named values
2015-04-30 18:02:19 -04:00
Kevin K
42d9b142b7
tests(run_tests.py): update tests to allow new shorthand multi values
2015-04-30 15:28:01 -04:00
Kevin K
6669f0a968
feat(MultipleValues): implement shorthand for options with multiple values
2015-04-30 15:11:12 -04:00
Kevin K.
d2fbe5a461
Merge pull request #90 from kbknapp/smart-usage
...
Implements smart usage strings on error
2015-04-30 11:15:29 -04:00
Kevin K
dd693ab86d
tests(usage): update to smart usage errors
2015-04-30 12:13:03 -04:00
Kevin K
d77048efb1
feat(usage): implement smart usage strings on errors
...
Closes #88
2015-04-30 12:12:44 -04:00
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
Kevin K
9e6af520a3
chore(clap): increase version
2015-04-28 23:49:59 -04:00
Kevin K
1c92ed0e72
chore(docs): change makefile -> travis auto cargo doc and upload
2015-04-28 23:18:08 -04:00
Kevin K
79f7ecceaa
chore(Travis-CI): update travis script to build and publish docs on successful beta build
2015-04-28 22:43:20 -04:00
Kevin K
ad4e545107
fix(from_usage): removes bug where usage strings have no help text
...
Creating arguments from usage strings with no help text previously
dropped the final character i.e. --flags -> --flag
This commit fixes that issue by testing if we are at the end of the
string
Closes #83
2015-04-28 22:11:20 -04:00
Kevin K.
06304bf9f5
docs(README.md): fix typos
2015-04-27 23:25:39 -04:00
Kevin K
550a2f3a05
chore(docs): rebuild docs with nightly
2015-04-27 23:20:11 -04:00
Kevin K
39d744cefd
docs(groups): adds examples of ArgGroup usage
2015-04-27 23:18:58 -04:00
Kevin K
60c1b307ac
docs(groups): adds documentation for ArgGroups
2015-04-27 22:52:50 -04:00
Kevin K
9a47a59fe3
chore(.travil.yml): adds support for building on rust nightly and stable
2015-04-27 21:41:17 -04:00
Kevin K
784b8c7254
chore(clap): increase version
2015-04-27 00:59:58 -04:00
Kevin K
1209a15f51
chore(docs): rebuild docs with nightly rustdoc
2015-04-27 00:57:09 -04:00
Kevin K.
c5122ae2df
Merge pull request #79 from kbknapp/groups
...
Adds support for argument groups and bug fixes
2015-04-27 00:56:08 -04:00
Kevin K
349927bfb1
tests(run_test.py): update tests to new error msgs
2015-04-27 00:54:21 -04:00
Kevin K
4bb4c3cc07
fix(RequiredArgs): required by default args should no longer be required when their exclusions are present
2015-04-27 00:53:12 -04:00
Kevin K
09eb4d9893
feat(ArgGroups): add ability to create arg groups
2015-04-27 00:53:12 -04:00
Kevin K
cfffb45aa4
style(clap): clean commented out code
2015-04-25 23:55:42 -04:00
Kevin K
17e3f141aa
refactor(args.rs): deprecate mutually_excludes* for conflicts_with* methods
2015-04-25 22:59:02 -04:00
Kevin K
ac161fa3f4
tests(run_tests.py): update for new help format
2015-04-25 22:24:06 -04:00
Kevin K
1e25abfc36
fix(help): change long help --long=long -> --long <long>
2015-04-25 22:19:09 -04:00
Kevin K
050d3de512
chore(clog): add .clog.toml file for processing changelog
2015-04-25 18:06:23 -04:00
Kevin K
fd61615d1a
perf(matchedargs): remove unused vars and String->&str
...
This commit increases the performance a bit by using string slices
instead of owned strings. The trade off is that code previously written
to handle all the argument parsing in a speratate function and return
only the ArgMatches must be re-written to add a lifetime specifier:
Old code 'fn handle_args<'a>() -> ArgMatches<'a>' needs another lifetime
specifier added, so now 'fn handle_args<'a, 'b>() -> ArgMatches<'a, 'b>'
BREAKING CHANGE
2015-04-25 11:12:07 -04:00
Kevin K
258c97867d
chore(clap): increase version
2015-04-22 16:30:45 -04:00
Kevin K
71f60cc223
chore(docs): rebuild docs with nightly rustdoc
2015-04-22 16:14:27 -04:00
Kevin K
b4758fec6f
tests(main.rs): change version to new macros
2015-04-22 16:13:25 -04:00
Kevin K
b76129e9b7
fix(from_usage): fix bug causing args to not be required
2015-04-22 16:08:34 -04:00