Sha256: de3595ef7c49e4ffaf6d06eb4036a9cf2b03ea7ea293947cd0d9c54630f2591e
Contents?: true
Size: 503 Bytes
Versions: 18
Compression:
Stored size: 503 Bytes
Contents
.DEFAULT_GOAL := help SHELL := /bin/bash .PHONY: help install test format help: ## Print help documentation @echo -e "Makefile Help for epb-view-models" @cat $(MAKEFILE_LIST) | grep -E '^[a-zA-Z_-]+:.*?## .*$$' | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}' install: ## Install required libraries and setup @bundle install test: ## Run all tests @bundle exec rake spec format: ## Runs Rubocop with the GOV.UK rules @bundle exec rake rubocop:auto_correct
Version data entries
18 entries across 18 versions & 1 rubygems