├── .drone.yml ├── LICENSE ├── README.md ├── shard.yml ├── spec └── clicr_spec.cr └── src ├── clicr.cr └── command.cr /.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j8r/clicr/HEAD/.drone.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j8r/clicr/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j8r/clicr/HEAD/README.md -------------------------------------------------------------------------------- /shard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j8r/clicr/HEAD/shard.yml -------------------------------------------------------------------------------- /spec/clicr_spec.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j8r/clicr/HEAD/spec/clicr_spec.cr -------------------------------------------------------------------------------- /src/clicr.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j8r/clicr/HEAD/src/clicr.cr -------------------------------------------------------------------------------- /src/command.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j8r/clicr/HEAD/src/command.cr --------------------------------------------------------------------------------