├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── shard.yml ├── spec ├── rainbow-spec_spec.cr └── spec_helper.cr └── src └── rainbow-spec.cr /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veelenga/rainbow-spec/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: crystal 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veelenga/rainbow-spec/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veelenga/rainbow-spec/HEAD/README.md -------------------------------------------------------------------------------- /shard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veelenga/rainbow-spec/HEAD/shard.yml -------------------------------------------------------------------------------- /spec/rainbow-spec_spec.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veelenga/rainbow-spec/HEAD/spec/rainbow-spec_spec.cr -------------------------------------------------------------------------------- /spec/spec_helper.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veelenga/rainbow-spec/HEAD/spec/spec_helper.cr -------------------------------------------------------------------------------- /src/rainbow-spec.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veelenga/rainbow-spec/HEAD/src/rainbow-spec.cr --------------------------------------------------------------------------------