Sha256: 587b41458cb1d42f26b108b8276e72a9c6f89a55415fbd1ee10730ad1bef35cb
Contents?: true
Size: 412 Bytes
Versions: 8
Compression:
Stored size: 412 Bytes
Contents
#! /bin/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
8 entries across 8 versions & 2 rubygems