summaryrefslogtreecommitdiff
path: root/examples/rake/Justfile
diff options
context:
space:
mode:
Diffstat (limited to 'examples/rake/Justfile')
-rw-r--r--examples/rake/Justfile15
1 files changed, 15 insertions, 0 deletions
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