Sha256: 47861144d13cec84bbbdac49e1ea5221e0cdef278310bbe9ca91a1f7ab6ce9b2

Contents?: true

Size: 283 Bytes

Versions: 5

Compression:

Stored size: 283 Bytes

Contents

#!/bin/sh
#/ Usage: test
#/
#/ Bootstrap and run all tests.
#/
#/ Examples:
#/
#/   # run all tests
#/   test
#/

set -e
cd $(dirname "$0")/..

[ "$1" = "--help" -o "$1" = "-h" -o "$1" = "help" ] && {
    grep '^#/' <"$0"| cut -c4-
    exit 0
}

script/bootstrap && bundle exec rake

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
plucky-0.8.0 script/test
plucky-0.7.0 script/test
plucky-0.6.6 script/test
plucky-0.6.5 script/test
plucky-0.6.4 script/test