Sha256: 96b2919babdba026e31ab2917ef95e4112950b5c88c2e1cb91100c4d17ac4c03
Contents?: true
Size: 515 Bytes
Versions: 9
Compression:
Stored size: 515 Bytes
Contents
#!/bin/bash set -e if [ -z "$(which bundle)" ]; then echo "A local bundler instalation is required for bundler development." >&2 exit 127 fi # setup test fixtures BASE_PATH="$(cd "$(dirname "${BASH_SOURCE[0]}")/../.." && pwd)" cd $BASE_PATH/test/fixtures/bundler # unset any pre-existing gemfile when installing test fixtures unset BUNDLE_GEMFILE if [ "$1" == "-f" ]; then find . -not -regex "\.*" -and -not -name "Gemfile" -print0 | xargs -0 rm -rf fi bundle install --path vendor/gems --without ignore
Version data entries
9 entries across 9 versions & 1 rubygems