diff options
Diffstat (limited to 'examples/plain_ruby/Justfile')
| -rw-r--r-- | examples/plain_ruby/Justfile | 11 |
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 |
