summaryrefslogtreecommitdiff
path: root/examples/gem/Justfile
diff options
context:
space:
mode:
Diffstat (limited to 'examples/gem/Justfile')
-rw-r--r--examples/gem/Justfile15
1 files changed, 15 insertions, 0 deletions
diff --git a/examples/gem/Justfile b/examples/gem/Justfile
new file mode 100644
index 0000000..005267f
--- /dev/null
+++ b/examples/gem/Justfile
@@ -0,0 +1,15 @@
+# Install gem dependencies
+setup:
+ bundle install
+
+# Apply configuration
+run:
+ bundle exec ruby config.rb
+
+# Dry run — show what would change without making changes
+dry:
+ bundle exec ruby config.rb --dry
+
+# Verbose output
+debug:
+ bundle exec ruby config.rb --debug