Compare commits

...

3 Commits

Author SHA1 Message Date
Tristan Ancelet
3217750714 Added README changes to show install steps 2026-03-31 10:27:52 -05:00
Tristan Ancelet
613e059fb7 forgot to change one 2026-03-31 09:20:53 -05:00
Tristan Ancelet
771934b486 Changed structure 2026-03-31 09:17:36 -05:00
6 changed files with 18 additions and 5 deletions

View File

@@ -2,11 +2,24 @@
This is a crystal project to manage setting up OptionParser objects based around "Command" objects and arguments you define inside them.
## Installation
1. Add the dependency to your `shard.yml`:
```yaml
dependencies:
cligen:
git: https://git.arcanium.tech/tristan/cligen
```
2. Run `shards install`
## Usage
```crystal
require "cli_generator"
require "cligen"
```
## Contributors
- [Tristan Ancelet](https://github.com/your-github-user) - creator and maintainer
- [Tristan Ancelet](https://git.arcanium.tech/tristan) - creator and maintainer

View File

@@ -1,6 +1,6 @@
require "option_parser"
require "./regex"
require "./format"
require "./cligen/regex"
require "./cligen/format"
module CliGen
VERSION = "0.1.0"
@@ -100,4 +100,4 @@ module CliGen
end
end
require "./command"
require "./cligen/command"