Sha256: 3f06ba90f50f1f74b5e21ed42ac4ff5da707fd58e532ae707afa086ccfdf4ae5
Contents?: true
Size: 1.36 KB
Versions: 8
Compression:
Stored size: 1.36 KB
Contents
# ==================================================================================== # # HELPERS # ==================================================================================== # ## help: print this help message .PHONY: help help: @echo 'Usage:' @sed -n 's/^##//p' ${MAKEFILE_LIST} | column -t -s ':' | sed -e 's/^/ /' # ==================================================================================== # # DEVELOPMENT # ==================================================================================== # ## bundle: install dependencies .PHONY: bundle bundle: bundle install ## terminal: go to the interactive terminal .PHONY: console console: ./bin/console # ==================================================================================== # # TESTING # ==================================================================================== # ## test: run tests .PHONY: test test: rspec # ==================================================================================== # # LINTING # ==================================================================================== # ## lint: run linter .PHONY: lint lint: rubocop # ==================================================================================== # # Release # ==================================================================================== # ## rel: run release .PHONY: rel rel: rake release
Version data entries
8 entries across 8 versions & 1 rubygems