-
Notifications
You must be signed in to change notification settings - Fork 1
/
dip.yml
55 lines (45 loc) · 1.17 KB
/
dip.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
version: '7'
compose:
files:
- docker-compose.yml
interaction:
bash:
description: Open the Bash shell in app's container
service: ruby
command: /bin/bash
pry:
description: Open Pry console
service: ruby
command: ./bin/console
bundle:
description: Run Bundler commands
service: ruby
command: bundle
appraisal:
description: Run Appraisal commands
service: ruby
command: bundle exec appraisal
rspec:
description: Run Rspec commands
service: ruby
command: bundle exec rspec
subcommands:
agnostic:
default_args: spec/lib
command: bundle exec appraisal agnostic bundle exec rspec
redlock.1:
default_args: spec/lib
command: bundle exec appraisal redlock.1 bundle exec rspec
rails:
default_args: spec/rails
command: bundle exec appraisal bundle exec rspec
standardrb:
description: Run Standard commands
service: ruby
command: bundle exec standardrb
provision:
- cp -f lefthook-local.dip_example.yml lefthook-local.yml
- dip compose down --volumes
- rm -f Gemfile.lock gemfiles/*
- dip bundle install
- dip appraisal install