├── .crystal-version ├── .editorconfig ├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── shard.lock ├── shard.yml ├── spec ├── cry_spec.cr └── spec_helper.cr └── src ├── cry.cr └── cry ├── command.cr └── version.cr /.crystal-version: -------------------------------------------------------------------------------- 1 | 0.35.1 2 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elorest/cry/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elorest/cry/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: crystal 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elorest/cry/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elorest/cry/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elorest/cry/HEAD/README.md -------------------------------------------------------------------------------- /shard.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elorest/cry/HEAD/shard.lock -------------------------------------------------------------------------------- /shard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elorest/cry/HEAD/shard.yml -------------------------------------------------------------------------------- /spec/cry_spec.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elorest/cry/HEAD/spec/cry_spec.cr -------------------------------------------------------------------------------- /spec/spec_helper.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elorest/cry/HEAD/spec/spec_helper.cr -------------------------------------------------------------------------------- /src/cry.cr: -------------------------------------------------------------------------------- 1 | require "./cry/*" 2 | 3 | Cry::Command.run ARGV 4 | -------------------------------------------------------------------------------- /src/cry/command.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elorest/cry/HEAD/src/cry/command.cr -------------------------------------------------------------------------------- /src/cry/version.cr: -------------------------------------------------------------------------------- 1 | module Cry 2 | VERSION = "1.2.1" 3 | end 4 | --------------------------------------------------------------------------------