Sha256: 903b37a894b924af01fddeee539449c1226167bdc0785a90c6bcce6e95416ad3

Contents?: true

Size: 375 Bytes

Versions: 2

Compression:

Stored size: 375 Bytes

Contents

#!/bin/sh
#/ Usage: bootstrap [bundle options]
#/
#/ Bundle install the dependencies.
#/
#/ Examples:
#/
#/   bootstrap
#/   bootstrap --local
#/

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

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

rm -rf .bundle/{binstubs,config}
bundle install --binstubs .bundle/binstubs --path .bundle "$@"

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
twirl-0.2.0 script/bootstrap
twirl-0.1.0 script/bootstrap