summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * Support arguments to options with leading -Andrew Clemons2016-04-043-3/+32
|/ | | | | | | | This allows negative values as arguments to numeric options and strings starting with - for any other type. Fixes #170 Fixes #179
* Bump version to 4.3.0v4.3.0Lee Jarvis2016-03-191-1/+1
|
* Update changelog for releaseLee Jarvis2016-03-191-2/+3
|
* Merge pull request #191 from prees1/masterLee Jarvis2016-03-192-2/+13
|\ | | | | Can specify a custom banner string in Options via config
| * Can specify a custom banner string in Options via configPhil Rees2016-03-182-2/+13
|/
* Merge pull request #190 from koic/ruby-23Lee Jarvis2016-02-291-0/+3
|\ | | | | Test against Ruby 2.3.0 on Travis CI
| * This patch is for "bundle install failing"Koichi ITO2016-02-291-0/+2
| | | | | | | | Ref: https://github.com/travis-ci/travis-ci/issues/5239
| * Test against Ruby 2.3.0 on Travis CIKoichi ITO2016-02-291-0/+1
|/
* Update changelogLee Jarvis2016-02-181-0/+6
|
* Merge pull request #189 from mwpastore/masterLee Jarvis2016-02-183-2/+15
|\ | | | | Allow disabling the delimiter for array arguments
| * Allow disabling the delimiter for array argumentsMike Pastore2016-02-183-2/+15
|/
* Merge pull request #186 from ReadmeCritic/patch-1Lee Jarvis2016-01-221-1/+1
|\ | | | | [readme] fix minor typos
| * [readme] fix minor typosReadmeCritic2016-01-211-1/+1
|/
* Bump version 4.2.1v4.2.1Lee Jarvis2015-11-251-1/+1
|
* Update changelog for v4.2.1Lee Jarvis2015-11-251-0/+15
|
* Merge pull request #184 from brbrady/no_prefix_bugfixLee Jarvis2015-11-252-3/+8
|\ | | | | Fix bug where true is passed to BoolOption block regardless of --no- prefix
| * Fix bug where true is passed to BoolOption block regardless of --no- prefixBen Brady2015-11-242-3/+8
|/
* Merge pull request #182 from NigoroJr/option_argsLee Jarvis2015-09-102-2/+20
|\ | | | | Fix arguments removed with option arguments
| * Fix bug regarding --foo=bar style optionsNaoki Mizuno2015-09-082-3/+11
| | | | | | | | | | | | | | | | | | | | This fixes the bug introduced in ebe678b1639654604b3e54b08ca710c38682b83e where the argument after a flag is naively deleted. For example, with --foo=bar baz , both `--foo=bar' and `baz' are deleted when only `--foo=bar' should be deleted.
| * Use each_with_index for looping over argumentsNaoki Mizuno2015-09-081-13/+3
| |
| * Fix arguments removed with option argumentsNaoki Mizuno2015-09-082-1/+21
|/ | | | See #181.
* Merge pull request #174 from brbrady/issue_163Lee Jarvis2015-09-072-3/+11
|\ | | | | only raise MissingArgument if not default_value
| * #163 only raise MissingArgument if not default_valueBen Brady2015-06-302-3/+11
|/
* Merge pull request #173 from rickhull/masterLee Jarvis2015-06-251-0/+15
|\ | | | | add ARGF notes to Arguments
| * add ARGF notes to ArgumentsRick Hull2015-06-231-0/+15
|/ | | | ci skip
* Simplify checking for grouped short flagsLee Jarvis2015-06-201-1/+1
|
* Merge pull request #172 from spk/travis-allow_failuresLee Jarvis2015-06-201-0/+6
|\ | | | | Add ruby-head and allow failures for jruby-head
| * Add ruby-head and allow failures for jruby-headLaurent Arnoud2015-06-201-0/+6
|/ | | | see #171
* Merge pull request #171 from spk/travis-jruby-headLee Jarvis2015-06-201-0/+1
|\ | | | | Add jruby-head to travis
| * Add jruby-head to travisLaurent Arnoud2015-06-201-0/+1
|/ | | | tested with jruby 9.0.0.0.rc1 (2.2.2)
* Bump version v4.2.0v4.2.0Lee Jarvis2015-06-182-3/+3
|
* Update changelogLee Jarvis2015-06-141-0/+1
|
* Merge pull request #169 from timrogers/masterLee Jarvis2015-06-145-13/+27
|\ | | | | Better handling of option names with multiple words
| * Better handling of option names with multiple wordsTim Rogers2015-06-135-13/+27
|/
* Update changesLee Jarvis2015-05-211-0/+2
|
* Support --no- prefix for inverting boolean optionsLee Jarvis2015-05-214-8/+32
| | | | closes #168
* Add regexp option to READMELee Jarvis2015-05-181-0/+1
|
* Update changelogLee Jarvis2015-05-181-0/+6
|
* Merge pull request #167 from spk/regexp-support-4.1Lee Jarvis2015-05-182-0/+20
|\ | | | | Added support for Regexp
| * Added support for RegexpLaurent Arnoud2015-05-172-0/+20
|/ | | | | Used to work on 3.6 See https://github.com/leejarvis/slop/commit/e2775e27d866ba85f6b6bf50536135ee4e93c93e
* Update travis imageLee Jarvis2015-04-181-1/+1
|
* Bump version 4.1.0v4.1.0Lee Jarvis2015-04-182-4/+3
|
* Updated changelogLee Jarvis2015-04-131-2/+5
|
* Merge pull request #165 from sigurdsvela/masterLee Jarvis2015-04-134-3/+32
|\ | | | | Implement string[] MissingArgument.flags and string UnknownOption.flag
| * Remove poitless semicolon in error.rbSigurd Svela2015-04-091-1/+1
| |
| * Remove semi-colon and extraneous whitespace in errorsigurdsvela2015-04-091-1/+1
| |
| * Rewrite UnknownOption.getUnknownOption() to flagsigurdsvela2015-04-072-7/+5
| | | | | | | | | | | | Rewrite the UnknownOption.getUnknownOption() to use attr_reader :flags. And rename the initialize parameter unknownOption to flag.
| * Rewrite MissingOption.getFlags() to flagssigurdsvela2015-04-072-9/+7
| | | | | | | | | | | | Removes the MissingOption.getFlags() function and replaces it with attr_reader :flags
| * Implement getFlags in MissingArgumentsigurdsvela2015-04-063-1/+18
| | | | | | | | | | | | A function in MissingArgument that returns and array of all the flags that matches the option missing an argument
| * Use parenthesis with new to conform to code stylesigurdsvela2015-04-061-1/+1
| |