Files
document-server-integration/web/documentserver-example/ruby/Makefile
2023-06-14 10:38:35 +04:00

18 lines
457 B
Makefile

.DEFAULT_GOAL := help
.PHONY: help
help: # Show help message for each of the Makefile recipes.
@grep -E "^[a-z]+: #" $(MAKEFILE_LIST) | \
sort | \
awk 'BEGIN {FS = ": # "}; {printf "%s: %s\n", $$1, $$2}'
.PHONY: install
install: # Install dependencies and initialize the project.
@bundle install
@bundle exec tapioca init
.PHONY: lint
lint: # Lint the source code for style and check for types.
@bundle exec rubocop
@bundle exec srb tc