Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/davetron5000/gli
Make awesome command-line applications the easy way
https://github.com/davetron5000/gli
Last synced: 10 days ago
JSON representation
Make awesome command-line applications the easy way
- Host: GitHub
- URL: https://github.com/davetron5000/gli
- Owner: davetron5000
- License: apache-2.0
- Created: 2009-02-05T03:49:25.000Z (almost 16 years ago)
- Default Branch: main
- Last Pushed: 2024-07-18T14:42:24.000Z (4 months ago)
- Last Synced: 2024-09-16T19:27:04.503Z (about 2 months ago)
- Language: Ruby
- Homepage: http://davetron5000.github.io/gli
- Size: 2.04 MB
- Stars: 1,257
- Watchers: 27
- Forks: 102
- Open Issues: 7
-
Metadata Files:
- Readme: README.rdoc
- Contributing: CONTRIBUTING.md
- License: LICENSE.txt
Awesome Lists containing this project
- awesome-ruby-toolbox - gli - Build command-suite CLI apps that are awesome. Bootstrap your app, add commands, options and documentation while maintaining a well-tested idiomatic command-line app (Developer Tools / CLI Option Parsers)
- awesome-ruby - GLI - Git-Like Interface Command Line Parser. (CLI Builder)
- awesome-cli-frameworks - Gli - line app in Ruby that behaves like ```git``` in that it takes subcommands to perform a series of complex action. ([Ruby](https://www.ruby-lang.org/) / Useful awesome list for Go cli)
- my-awesome-github-stars - davetron5000/gli - Make awesome command-line applications the easy way (Ruby)
README
= GLI, the Git-Like Interface Command Line Parser
GLI allows you to create command-line app in Ruby that behaves like git in that it takes subcommands to perform a series of complex action, e.g. git remote add.
* {Overview}[http://davetron5000.github.io/gli]
* {Source on Github}[http://github.com/davetron5000/gli]
* RDoc[http://davetron5000.github.io/gli/rdoc/index.html]{}[https://travis-ci.org/davetron5000/gli]
== What Problem does GLI Solve?
Creating a command-line app that uses subcommands, each of which might accept different command-line options, is somewhat difficult with Ruby's built-in OptionParser. GLI provides an API that wraps OptionParser so that you can create a subcommand-based command-line app with minimal boilerplate. This API also produces complete documentation for your command-line app.
== Why is GLI's solution different from others?
There are other RubyGems that allow you to create a command-line app that takes subcommands. These solutions are often quite limited (e.g. they don't allow deeply nested subcommand structures or sophisticated command-line options per subcommand), or require more code that we think is needed. Some solutions make it difficult or impossible to properly document your command-line app.
== What you need to know to use GLI
You should know Ruby, and have a basic understanding of how the UNIX command line works: standard input, standard output, standard error, and exit codes.
== Use
Install if you need to:
gem install gli
You can validate you have installed it correctly by running gli help. You should see formatted help output.
If you are using GLI in another application, add it to your Gemfile:
gem "gli"
You can test your install via Bundler by running bundle exec gli help. This should produce formatted help output from GLI.
== Getting Started
The simplest way to get started is to create a scaffold project
gli init todo list add complete
(note if you installed via Bundler you will need to execute bundle exec gli init todo list add complete)
This will create a basic scaffold project in ./todo with:
* executable in ./todo/bin/todo. This file demonstrates most of what you need to describe your command line interface.
* an empty test in ./todo/test/default_test.rb that can bootstrap your tests
* a gemspec shell
* a README shell
* Rakefile that can generate RDoc, package your Gem and run tests
* A Gemfile suitable for use with Bundler to manage development-time dependenciesNow, you are ready to go:
> cd todo
> bundle exec bin/todo help
NAME
todo - Describe your application hereSYNOPSIS
todo [global options] command [command options] [arguments...]VERSION
0.0.1GLOBAL OPTIONS
-f, --flagname=The name of the argument - Describe some flag here (default: the default)
--help - Show this message
-s, --[no-]switch - Describe some switch hereCOMMANDS
add - Describe add here
complete - Describe complete here
help - Shows a list of commands or help for one command
list - Describe list here> bundle exec bin/todo help list
NAME
list - Describe list hereSYNOPSIS
todo [global options] list [command options] Describe arguments to list hereCOMMAND OPTIONS
-f arg - Describe a flag to list (default: default)
-s - Describe a switch to listAll you need to do is fill in the documentation and your code; the help system, command-line parsing and many other awesome features are all handled for you.
Get a more detailed walkthrough on the {main site}[http://davetron5000.github.io/gli]
== Supported Platforms
See `dx/docker-compose.env` and the variable `RUBY_VERSIONS` for the versions that are supported. This should generally track with the supported version of Ruby from Ruby's maintainers.
That said, GLI should generally work on other Rubies as it doesn't have any runtime dependencies and there are no plans to use more modern features of Ruby in the codebase.
== Documentation
Extensive documentation is {available at the wiki}[https://github.com/davetron5000/gli/wiki].
API Documentation is available {here}[http://davetron5000.github.io/gli/rdoc/index.html]. Recommend starting with GLI::DSL or GLI::App.
== Developing
See `CONTRIBUTING.md`
== Credits
Author:: Dave Copeland (mailto:davetron5000 at g mail dot com)
Copyright:: Copyright (c) 2010 by Dave Copeland
License:: Distributes under the Apache License, see LICENSE.txt in the source distro== Links
* [http://davetron5000.github.io/gli] - RubyDoc
* [http://www.github.com/davetron5000/gli] - Source on GitHub
* [http://www.github.com/davetron5000/gli/wiki] - Documentation Wiki
* [http://www.github.com/davetron5000/gli/wiki/Changelog] - Changelog=
gli
CLI documentation:include:gli.rdoc