Sha256: 96694a17cc7e15bc05e8f19b565911bbba0c30085cda1a98931dad1fc3832e93
Contents?: true
Size: 310 Bytes
Versions: 10
Compression:
Stored size: 310 Bytes
Contents
#!/bin/bash set -eu export BUNDLE_PATH=/tmp/docker/bundle export BUNDLE_JOBS=4 case "${1-}" in prepare) bundle check || bundle install ;; rspec) bundle exec rspec spec ;; integration) bundle exec rspec integration/acceptance/ ;; console) bash ;; *) echo "Task not found" exit 1 ;; esac
Version data entries
10 entries across 10 versions & 4 rubygems