3 * Bugfix for short option autocreation
4 * More aggressive documentation
8 * Sub-command support via Parser#stop_on
11 * Ruby 1.9-ify. Apparently this means replacing :'s with ;'s.
14 * Documentation improvements
17 * Fix incorrect error message for multiple missing required arguments
18 (thanks to Neill Zero)
21 * Don't attempt curses screen-width magic unless running on a terminal.
24 * --help and --version do the right thing even if the rest of the
25 command line is incorrect.
26 * Added #conflicts and #depends to model dependencies and exclusivity
31 * Disable short options with :short => :none.
32 * Minor bugfixes and error message improvements.
35 * Wrap at (screen width - 1) instead of screen width.
36 * User can override --help and --version.
37 * Bugfix in handling of -v and -h.
38 * More tests to confirm the above.
41 * Minor documentation tweaks.
42 * Removed hoe dependency.
45 * Trollop::options now passes any arguments as block arguments. Since
46 instance variables are not properly captured by the block, this
47 makes it slightly less noisy to pass them in as local variables.
48 (A real-life use for _why's cloaker!)
49 * Help display now preserves original argument order.
50 * Trollop::die now also has a single string form in case death is not
51 due to a single argument.
52 * Parser#text now an alias for Parser#banner, and can be called
53 multiple times, with the output being placed in the right position
55 * Slightly more indicative formatting for parameterized arguments.