Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tongueroo/cli-template
Generate a CLI tool quickly
https://github.com/tongueroo/cli-template
cli command generator thor
Last synced: about 1 month ago
JSON representation
Generate a CLI tool quickly
- Host: GitHub
- URL: https://github.com/tongueroo/cli-template
- Owner: tongueroo
- License: mit
- Created: 2018-02-09T19:20:28.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2020-03-20T23:03:51.000Z (over 4 years ago)
- Last Synced: 2024-10-02T09:56:08.126Z (about 1 month ago)
- Topics: cli, command, generator, thor
- Language: Ruby
- Size: 163 KB
- Stars: 16
- Watchers: 3
- Forks: 5
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# CLI Template
[![CircleCI](https://circleci.com/gh/tongueroo/cli-template.svg?style=svg)](https://circleci.com/gh/tongueroo/cli-template)
[![Maintainability](https://api.codeclimate.com/v1/badges/c6c4f26aaafccab10baf/maintainability)](https://codeclimate.com/github/tongueroo/cli-template/maintainability)[![BoltOps Badge](https://img.boltops.com/boltops/badges/boltops-badge.png)](https://www.boltops.com)
`cli-template` is a generator tool that builds a starter CLI project based on [Thor](http://whatisthor.com/). It is the successor tool to [thor_template](https://github.com/tongueroo/thor_template), which is also a tool that generates CLI projects.
The predecessor tool is covered in this original blog post, [Build Thor CLI Project in Under a Second](https://blog.boltops.com/2017/09/14/build-thor-cli-project-in-under-a-second). It covers usage and also contains a video demo. An updated blog post will eventually be made, for now, refer to the original blog post.
The generated CLI project comes with:
* example passing specs
* auto-completion## Usage
cli-template new mycli
cd mycli
exe/mycli hello worldThe above generated a starter CLI project called `mycli` with a working hello command. The created project also has starter specs for you 😁
$ rake
Mycli::CLI
mycli
should hello world
should goodbye worldFinished in 1.12 seconds (files took 0.71706 seconds to load)
2 examples, 0 failures### Subcommands
Use the `--subcommand` to have the generator also include a subcommand example.
cli-template new mycli --subcommand
cd mycli
exe/foo sub goodbye # subcommand example## Release
Once you are satisfied with the CLI tool, you can release it as a gem.
1. edit the mycli.gemspec
2. edit lib/mycli/version.rb
3. update the CHANGELOG.mdAnd run:
rake release
When installed as a gem, you no longer have to prepend exe in front of the command. For example, `exe/mycli` becomes the `mycli` command.
## Different starter templates
There are 2 different templates that the tool generates from:
1. basic thor project: A standard CLI tool based on basic usage of Thor.
2. colon namespaced project: The generated CLI project still uses Thor but it does some manipulation in order to allow defining namespaced methods with colons instead of spaces. Example: `mycli sub:command` vs `mycli sub command`.To use the different templates:
TEMPLATE=colon_namespaces cli-template new mycli
TEMPLATE=default cli-template new mycli
cli-template new mycli # same as TEMPLATE=default## Auto Completion
There is support for TAB completion in the newly generated CLI project for the default template. To enable auto completion, add this to `~/.bashrc` or `~/.profile`:
eval $(mycli completion_script)
Remember to re-load the shell. Note, the auto completion will only work if the cli command is avaialble in your PATH. You can do this by installing the gem. You can also create a wrapper bash script that calls to your development cli command like so:
cat > /usr/local/bin/mycli << 'EOL'
#!/bin/bash
exec ~/src/mycli/exe/mycli "$@"
EOL
chmod a+x /usr/local/bin/mycli### Experimental Auto Completion Support for colon_namespaces Template
The auto-completion for the colon_namespaces template CLI project is experimental. Ran into a few issues:
1. Slow as to make auto-completion useless. This because the generated CLI invokes autoloading when it detects the methods for the completion words. Ideas on speeding this would be appreciated! Right now it takes about 1 second.
2. Does not work with colons currently. Will have to look into this post [Bash Command-Line Tab Completion Colon Character
](https://stackoverflow.com/questions/25362968/bash-command-line-tab-completion-colon-character).
3. Does not work with the last two characters are `--`.Suggestions to are appreciated!
## Installation
gem install cli-template
## Contributing
1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am "Add some feature"`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request