Sha256: 258bc64a8d3fc5e9049d86ecc955da971e5f474a5d91f2bf50600c0d5ef860b1
Contents?: true
Size: 420 Bytes
Versions: 38
Compression:
Stored size: 420 Bytes
Contents
#! /usr/bin/env bash set -o nounset # Exit, with error message, when attempting to use an undefined variable. set -o errexit # Abort script at first error, when a command exits with non-zero status. set -o pipefail # Return exit status of the last command in the pipe that returned a non-zero return value. IFS=$'\n\t' # Defines newlines and tabs as delimiters for splitting words and iterating arrays. bundle install
Version data entries
38 entries across 38 versions & 1 rubygems