Sha256: 875fe62dd4fcd42fa11578c6e91787d500d3d2e980d73573d30e648eb29f3753
Contents?: true
Size: 287 Bytes
Versions: 3
Compression:
Stored size: 287 Bytes
Contents
#!/usr/bin/env bash set -eo pipefail IFS=$'\n\t' set -vx appraisal=${1:-} if [ -z "$appraisal" ]; then # Run tests for all appraisals if none is specified bundle exec appraisal rake spec else # Run tests for a specific appraisal bundle exec appraisal "$appraisal" rake spec fi
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
active_recall-2.1.0 | bin/spec |
active_recall-2.0.2 | bin/spec |
active_recall-2.0.1 | bin/spec |