# using crystal
crystal build --no-debug --release
# using shards
shards build --no-debug --release
Release build
shards build --release --no-debug --production
# --frozen Strictly installs locked versions from shard.lock.
# --without-development Does not install development dependencies.
# --production same as `--frozen --without-development`
# Basic
crystal spec
# Verbose
crsytal spec -v
# Installation
# brew tap crystal-ameba/ameba
# brew install ameba
ameba
# Auto fix
ameba --fix