Skip to content
davetron5000 edited this page Oct 20, 2012 · 49 revisions

v2.4.1 - Oct 20, 2012

  • Bugfix for help output when using an unknown command. Help advised you to use gli and not the actual app name to get help. (see 111)

v2.4.0 - Oct 11, 2012

  • Expand commands_from to allow for requiring files from an absolute path outside the load path, so as to allow for runtime plugins, courtesy @pengwynn (see 109)

v2.3.0 - Oct 2, 2012

  • Bugfix in scaffold, courtesy @pengwynn, (see 108)
  • Options now available as strings and symbols from options and global_options hashes passed to action blocks (see 106)
  • Proper verbatim help output that I botched initially. Now, :verbatim does no wrapping of any kind. Courtesy, @d1 (see 107)

v2.2.1 - Sept 19, 2012

  • Fix bug in _doc command on 1.8 rubies

v2.2.0 - Sept 19, 2012

  • Improve format of rdoc from the _doc command
  • App can get a long_desc (see 101)
  • -h for a command or subcommand shows help for that command or subcommand (see 104)
  • Allow flag default values to be masked, e.g. for passwords in a config file (see 71)
  • Allow manual ordering of help commands, instead of sorting (see 83)
  • Better control of help text wrapping; can disable or enable only for TTY (see 100)

v2.1.0 - Sept 13, 2012

  • Can document command arguments as optional and/or multiple (see 85)
  • Restore -c to the help command and make it work with sub commands for shell completion assistance (see 105)
  • Option to leave ARGV unmodified (see 103)

v2.0.0 - August 14, 2012

  • Subcommands
  • Better help output
  • Way more features when declaring flags and switches
  • OptionParser underneath, so you get all of it's power (and none of it's weaknesses)
  • Switches are negatable by default
  • Bootstraped apps are better, including aruba, an rvmrc, and more modern filenames
  • More easily place command declarations in external files
  • Enhanced rdoc
  • Make include GLI backwards-compatible (but GLI.run fail with a useful message)
  • Fixed bug where default_command didn't work for top level commands. Fix courtesy @v-yarotsky
  • Added around hook for automatic-resource-management of global setup. Idea courtesy @v-yarotsky
  • Doc fixes from @v-yarotsky and @aterris
  • Various bug fixes

v1.6.0 - April 9, 2012

  • Can add multi-paragraph descriptions via a double line break
  • New command, default_command
  • Bugfixes related to scaffolded apps

v1.3.7 - November 21, 2011

  • File permissions on created config files set more strictly, (see #58), thanks @bemurphy!)

v1.3.6 - November 14, 2011

  • Fixes #57 by removing the -R from the rdoc call in the gemspec

v1.3.5 - October 26, 2011

  • Added back the load path stuff I removed in 1.3.4, since it was causing problems running locally. Need a better solution and/or wait for GLI 2

v1.3.4 - October 9, 2011

  • 1.9.3 support
  • Stop futzing with the load path in gli and in generated code

v1.3.2 - Sep 3, 2011

  • Fix bug with word-wrapping help text ( See #51, thanks babysnakes!)
  • Fix bug where omitting all desc calls results in no documentation (closed #48)
  • Get the home directory in a more x-platform way (closed #47)
  • Added simplecov for 1.9.2 code coverage
  • Some other fixes to make dev tools compatible with various rubies

v1.3.1 - Jun 26 2011

Thanks to gnufied for the patches!

  • Use /usr/bin/env instead of /usr/bin/ruby in gli and scaffolded apps
  • Allow flags to appear after arguments
  • Gemfile.lock no longer tracked in git, per best practices

v1.3.0 - May 1 2011

  • Help now shows the default values based on what's in the configuration (closed #10)
  • Fixed bug where options specified in config cannot be overridden on the command line (closed #43)
  • Scaffolded apps no longer require a 1.8.7-only test class (closed #42)
  • You can now skip pre and post blocks per command (see Hooks for more)
  • You can specify a program description and it shows up in the help (closed #40)
  • JRuby support (i.e. just made sure it actually works on JRuby)
  • Test coverage of the gli command and a basic scaffolded site (closed #30)

v1.2.6 - Mar 6 2011

  • Help output now makes distinction between global and command options
  • Error messages on bad invocations now give you a clue as to where to look (e.g. use 'gli help' for list of commands)
  • Using gemspec and add_development_dependency instead of putting gems in the Gemfile
  • Massive overhaul of rubydoc; everything's consistent, up to date, and usable now
  • Created the all-important cheatsheet
  • Refactored some nasty methods

v1.2.5 - Dec 12 2010

  • Corrected gemspec to include all the files
  • Fixed issue with Ruby 1.9 case statement

v1.2.4 - Dec 12 2010

This version is broken, as it doesn't include ONE file in the .gem

v1.2.3 - Dec 12 2010

This version is broken, as it doesn't include two files in the .gem, and is not compatible with Ruby 1.9

  • new GLI apps will exit nonzero on errors (see Error Handling)
  • Support for custom exit codes
  • GLI now uses an environment variable to allow for debugging caught exceptions
  • GLI now uses the width of the terminal for displaying help messages, not just hard-coding 80

v1.2.2 - Dec 11 2010

  • Changed uses of map(&:symbol) to older form, since this doesn't work on 100% of Ruby 1.8.7s.

v1.2.1 - Nov 26 2010

  • Changed default data structure of options back to a Hash. If you want to use the OpenStruct subclass Options, simply put use_openstruct true in your command line definition.

v1.2.0 - Nov 26 2010

  • Added ability to use help command to list commands suitable for creating bash completion script
  • options and global_options will now contain values for all aliases of each flag and switch, so if you created a flag with flag [:f,:flag] and the user specifies -f foo on the command line, both options[:f] and options[:flag] will have the value foo. Same behavior for --flag=foo.
  • You may now no-longer use names that have already been used. So if you declare a switch switch :foo and then later declare a flag flag [:f,:foo], you get an ArgumentError. This is only checked within relevant scope, so you can still use the same option names between commands, and you can still have the same option name once in global and once in command scope. This is really a bugfix as the behavior of GLI was not clear before.
  • long_desc now shows up in generated rdoc for flags and switches
  • Scaffoling now generates a usable Gemfile for bundler
  • More direct support for version numbers in GLI-managed apps

v1.1.3 - Oct 24 2010

Changed the way we locate FILE's directory; if it's a symlink it would've have worked. Required adding :realpath method to File for pre 1.9.2 rubies