Packages

Lightweight Enum with concurrency

Current section

Files

Jump to
concurrent Makefile
Raw

Makefile

.PHONY: test
install:
mix deps.get
console:
iex -S mix
docs:
mix docs
release:
sed -i '' -e 's/{:concurrent, "~> [0-9\.]*"}/{:concurrent, "~> $(VERSION)"}/' README.md && \
sed -i '' -e 's/@version "[0-9\.]*"/@version "$(VERSION)"/' mix.exs && \
git add --all && \
git commit -v -m "Release v$(VERSION)" && \
git tag "v$(VERSION)"
publish:
git push && \
git push --tags && \
mix hex.publish
format:
mix format
test: format
iex -S mix test --trace