Sha256: 8c409537533fd096378f91305fdaf62e0e7d965be6e116fe9abc478260a15352
Contents?: true
Size: 338 Bytes
Versions: 4
Compression:
Stored size: 338 Bytes
Contents
#!/usr/bin/env bash set -euo pipefail IFS=$'\n\t' INSTALL_DEST=(--path '.bundle/') while [[ $# -gt 0 ]] do key="$1" case $key in -s|--system) INSTALL_DEST=(--system) shift # past argument ;; esac done set -vx bundle install ${INSTALL_DEST[@]} --without "" # Do any other automated setup that you need to do here
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
longleaf-1.1.1 | bin/setup |
longleaf-1.1.0 | bin/setup |
longleaf-1.0.0 | bin/setup |
longleaf-0.3.0 | bin/setup |