summaryrefslogtreecommitdiff
path: root/examples/gem/Justfile
blob: 005267f2254b5f3e0735d321a6c7b498b389430d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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