Ruby support #1

Open
jaroslaw wants to merge 165 commits from ruby into main
2 changed files with 15 additions and 3 deletions
Showing only changes of commit 0d03a47eed - Show all commits

15
book/justfile Normal file
View file

@ -0,0 +1,15 @@
export CARGO_MANIFEST_DIR := `pwd`
build-deps:
cargo clean && cargo build
_test:
mdbook test -L target/debug/deps/
test: build-deps _test
test-watch: build-deps
watchexec --exts md just _test
serve:
mdbook serve

View file

@ -1,3 +0,0 @@
#!/bin/sh
CARGO_MANIFEST_DIR=$(pwd) cargo clean && cargo build && mdbook test -L target/debug/deps/