mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-08 08:48:39 +09:00
13 lines
213 B
Makefile
13 lines
213 B
Makefile
test: install repo_update
|
|
@set -e; \
|
|
for test in *_test.rb; do \
|
|
bundle exec ./$$test; \
|
|
done
|
|
|
|
repo_update:
|
|
@bundle exec pod repo update --silent
|
|
|
|
install:
|
|
@bundle install --path gems
|
|
|
|
.PHONY: test install
|