summaryrefslogtreecommitdiff
path: root/README.md
Commit message (Collapse)AuthorAgeFilesLines
* README: Fix example to include required optionWilliam Woodruff2017-10-271-2/+3
|
* Support for required optionsWilliam Woodruff2017-09-291-0/+2
| | | | | | | | | | | This commit introduces support for required options, which are options that cause the parser to raise a `MissingRequiredOption` exception if not present. Options can be marked as required by passing `required: true` in their configuration, and any errors caused by missing required options can be suppressed via `suppress_errors: true`.
* Add README note about NullOption callbacksLee Jarvis2017-07-261-0/+6
| | | | closes #213
* Allow disabling the delimiter for array argumentsMike Pastore2016-02-181-0/+3
|
* [readme] fix minor typosReadmeCritic2016-01-211-1/+1
|
* add ARGF notes to ArgumentsRick Hull2015-06-231-0/+15
| | | | ci skip
* Better handling of option names with multiple wordsTim Rogers2015-06-131-5/+7
|
* Support --no- prefix for inverting boolean optionsLee Jarvis2015-05-211-2/+2
| | | | closes #168
* Add regexp option to READMELee Jarvis2015-05-181-0/+1
|
* Update travis imageLee Jarvis2015-04-181-1/+1
|
* add Float supportRick Hull2014-12-291-0/+1
| | | | | | - in lib/ - in test/ - in README
* Add a section on upgrading from v3Lee Jarvis2014-12-281-0/+82
|
* Mention commands (or lack of)v4.0.04.0Lee Jarvis2014-12-271-0/+8
|
* Add result/parser `arguments` methodLee Jarvis2014-12-191-0/+16
|
* Add readme section for printing helpLee Jarvis2014-12-171-0/+54
|
* Fix typoLee Jarvis2014-12-171-1/+1
|
* Add errors section to readmeLee Jarvis2014-12-171-0/+25
|
* Add option types to READMELee Jarvis2014-12-171-0/+17
|
* It doesnt support 1.8 oopsLee Jarvis2014-12-171-1/+1
|
* Tweak README to mention Ruby version supportLee Jarvis2014-12-171-1/+4
|
* Add "on" example to readmeLee Jarvis2014-12-171-0/+4
|
* Update readme and add type aliasesLee Jarvis2014-11-191-2/+23
|
* Add README section on custom typesLee Jarvis2014-11-191-0/+49
|
* Update readmeLee Jarvis2014-11-191-1/+1
|
* Start cleaning up READMELee Jarvis2014-11-191-172/+24
|
* Fix tableLee Jarvis2013-08-291-6/+6
|
* Use a table to show config optionsLee Jarvis2013-08-291-16/+6
|
* Added advanced usage to readmeLee Jarvis2013-08-291-0/+29
|
* Update inconsistencies in readmeLee Jarvis2013-08-291-3/+3
|
* Ensure build status images points at masterLee Jarvis2013-06-171-1/+1
|
* fix a couple of writing mistakes in READMELee Jarvis2013-05-151-2/+2
|
* Update README.mdGordon Fontenot2013-03-151-2/+2
| | | Update the documentation for Ruby's 1.9 hash syntax, and fix the example for the `:as` argument
* added link to api docsLee Jarvis2013-01-091-1/+1
|
* fix commands exampleLee Jarvis2013-01-081-2/+2
|
* added to_hash(true) example to commandsLee Jarvis2013-01-081-2/+5
|
* updated readme with command exampleLee Jarvis2013-01-081-0/+26
|
* use long options in examples rather than short flagsLee Jarvis2013-01-061-17/+17
|
* on second thought, use syntax highlightingLee Jarvis2013-01-061-59/+73
|
* simplify usage even moreLee Jarvis2013-01-061-4/+1
|
* avoid syntax highlighting for readability and simplify usageLee Jarvis2013-01-061-93/+64
|
* remove github installation from readmeLee Jarvis2013-01-061-8/+0
|
* added list/range/autocreate docs to readmeLee Jarvis2013-01-061-5/+51
|
* no need to tell people this nowLee Jarvis2012-11-141-2/+0
|
* fix sample code in README.mdNobuhiro IMAI2012-02-291-1/+1
|
* Fixed a probable typo in the readme.Andrey 'lolmaus' Mikhaylov2012-02-151-1/+1
|
* added build status image to readmeLee Jarvis2012-02-081-0/+2
|
* allow dashes to be treated as underscroes to help api method style #51Lee Jarvis2012-01-291-2/+0
|
* New support_dash option. Will treat --database-name like --database_nameEric Anderson2012-01-261-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | In your ruby code we really prefer underscores. This way we can write: on :database_name= Instead of the uglier: on 'database-name=' Also it means we can use the magic present? method. So we can do: opts.database_name? Instead of the uglier: opts.present? 'database-name' But using an underscore to make our Ruby prettier makes our command line options uglier. We end up with a mix of - and _ which is confusing to users. This patch adds a new option called :support_dash which will allow users to type --database-name but still allow the ruby code to specify :database_name and opts.database_name? It works similar to the existing case option that allows options to be case insensitive.
* updated wiki linksLee Jarvis2012-01-211-5/+0
|
* tell users this is v3Lee Jarvis2012-01-211-0/+2
|