summaryrefslogtreecommitdiff
path: root/examples/plain_ruby
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-03-02 08:34:26 +0200
committerPaul Buetow <paul@buetow.org>2026-03-02 08:34:26 +0200
commit5b8ce0b75271af6b4799800178ab3039d97c47b7 (patch)
tree8713a342f84ab8a432f781573dd1a6e7178cd51d /examples/plain_ruby
parent3f833b7f82bde48ceb20f4b90407afc928ebe7b3 (diff)
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 <noreply@anthropic.com>
Diffstat (limited to 'examples/plain_ruby')
-rw-r--r--examples/plain_ruby/Justfile11
1 files changed, 11 insertions, 0 deletions
diff --git a/examples/plain_ruby/Justfile b/examples/plain_ruby/Justfile
new file mode 100644
index 0000000..c758519
--- /dev/null
+++ b/examples/plain_ruby/Justfile
@@ -0,0 +1,11 @@
+# Apply configuration
+run:
+ ruby config.rb
+
+# Dry run — show what would change without making changes
+dry:
+ ruby config.rb --dry
+
+# Verbose output
+debug:
+ ruby config.rb --debug