Sha256: 219f6dea095064630b541a95471d453b1c657ed1ff4d7c07c2d1ddca20dac0db

Contents?: true

Size: 502 Bytes

Versions: 2

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-auth-tools"
	@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

2 entries across 2 versions & 1 rubygems

Version Path
epb_view_models-1.0.1 Makefile
epb_view_models-1.0.0 Makefile