From 5b8ce0b75271af6b4799800178ab3039d97c47b7 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Mon, 2 Mar 2026 08:34:26 +0200 Subject: add Justfiles for all examples Each example directory gets a Justfile with run/dry/debug recipes. The rake and gem examples also include a setup recipe for bundle install. The cli example adds a hosts recipe for the --hosts flag. Co-Authored-By: Claude Sonnet 4.6 --- examples/rake/Justfile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 examples/rake/Justfile (limited to 'examples/rake/Justfile') diff --git a/examples/rake/Justfile b/examples/rake/Justfile new file mode 100644 index 0000000..e25852a --- /dev/null +++ b/examples/rake/Justfile @@ -0,0 +1,15 @@ +# Install gem dependencies +setup: + bundle install + +# Apply configuration +run: + rake setup + +# Dry run — show what would change without making changes +dry: + rake setup -- --dry + +# Verbose output +debug: + rake setup -- --debug -- cgit v1.2.3