Sha256: c917ad6f654bab0980da940e43a503a4703d609d61fd0ad9626a33b1f5dce234

Contents?: true

Size: 663 Bytes

Versions: 4

Compression:

Stored size: 663 Bytes

Contents

#!/bin/sh

# Set up Rails app. Run this script immediately after cloning the codebase.
# https://github.com/thoughtbot/guides/tree/master/protocol

# Exit if any subcommand fails
set -e

# Set up Ruby dependencies via Bundler
gem install bundler --conservative
bundle check || bundle install

# Set up database and add any development seed data
bin/rails dev:prime

if [ ! -d .git/safe ] && echo $PATH | grep .git/safe > /dev/null; then
  echo "-----------------------------------------------------------------------"
  echo
  echo "-> When you trust this repo, remember to run: mkdir -p .git/safe"
  echo
fi

# Only if this isn't CI
# if [ -z "$CI" ]; then
# fi

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
suspenders-1.48.0 templates/bin_setup
suspenders-1.47.0 templates/bin_setup
suspenders-1.46.0 templates/bin_setup
suspenders-1.45.0 templates/bin_setup