mirror of
https://github.com/extism/extism.git
synced 2026-04-23 03:00:11 -04:00
28 lines
359 B
Makefile
28 lines
359 B
Makefile
|
|
.PHONY: prepare test
|
|
|
|
prepare:
|
|
bundle install
|
|
bundle binstubs --all
|
|
|
|
test: prepare
|
|
bundle exec rake test
|
|
|
|
clean:
|
|
rm -f extism-*.gem
|
|
|
|
publish: clean prepare
|
|
gem build extism.gemspec
|
|
gem push extism-*.gem -k $RUBYGEMS_API_TOKEN
|
|
|
|
lint:
|
|
bundle exec rufo --check .
|
|
|
|
format:
|
|
bundle exec rufo .
|
|
|
|
docs:
|
|
bundle exec yard
|
|
|
|
show-docs: docs
|
|
open doc/index.html
|