From caeba481aabbd07e1ac865436be2a0f2aca02b68 Mon Sep 17 00:00:00 2001 From: Adam Doppelt Date: Thu, 21 Aug 2025 12:42:22 -0700 Subject: [PATCH] sample justfile --- justfile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 justfile diff --git a/justfile b/justfile new file mode 100644 index 00000000..45ee0481 --- /dev/null +++ b/justfile @@ -0,0 +1,14 @@ +default: + @just --list + +# lint rb files with rubocop +lint: + bundle exec rubocop + +# run image_optim from repo +run *ARGS: + ruby -Ilib bin/image_optim {{ARGS}} + +# rspec tests +test: + bundle exec rspec