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

Version Path
gemsmith-7.7.0 lib/gemsmith/templates/%gem_name%/bin/setup.tt
martinet-0.1.1 bin/setup
martinet-0.1.0 bin/setup
gemsmith-7.6.0 lib/gemsmith/templates/%gem_name%/bin/setup.tt
gemsmith-7.5.0 lib/gemsmith/templates/%gem_name%/bin/setup.tt
gemsmith-7.4.0 lib/gemsmith/templates/%gem_name%/bin/setup.tt
gemsmith-7.3.0 lib/gemsmith/templates/%gem_name%/bin/setup.tt
gemsmith-7.2.0 lib/gemsmith/templates/%gem_name%/bin/setup.tt