Sha256: 1b4cc02c90e158e1e37dd24d030fd8319bb12ae7a31875a6436beb52a0f1203a
Contents?: true
Size: 502 Bytes
Versions: 27
Compression:
Stored size: 502 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:autocorrect
Version data entries
27 entries across 27 versions & 1 rubygems