GBCli
GBCli copied to clipboard
Objective C foundation tool command line interface library
The podspec says its at version 1.1, but Cocoapods only has it up to version 1.0. Could you push the latest, please?
Please add the option to output to stderr. Something like: void gbprinterr(NSString *format, ...) { va_list arguments; va_start(arguments, format); gb_printf_worker(stderr, format, arguments); va_end(arguments); } void gbprinterrln(NSString *format, ...) { va_list...
(I'm using the default GBCli from CocoaPods (1.1?) with Objective-C on a Mac OS X 10.10 system running Xcode 6.2.) I added an option that needs a negative variant. I'm...
The header comments are out of date compared to the Readme. The code samples are now wrong as the method signatures have changed. See [GBCli/src/GBCommandLineParser.h](https://github.com/tomaz/GBCli/blob/master/GBCli/src/GBCommandLineParser.h)
I find that using chars for the short options, while technically correct, is a bit convoluted, specially since they are later converted to NSStrings anyway. I'd request to have additional...
Some proposals about additional argument forms that can be supported: ### Syntax to explicitly signal end of options If a non-option argument _needs_ to start with `-`, we need a...