summaryrefslogtreecommitdiff
path: root/bin/setup
blob: e52c127901ff3779ba18b809ff1f1e1e1fec2a87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash

set -euo pipefail
IFS=$'\n\t'

bundle install

for dir in spec/integration/*; do
  pushd "$dir"
  bundle install
  popd
done