Sha256: 6238cf9ab163507a80c0a99cc2bf5b109400d724cb3ea259bd5785ae08f98b07

Contents?: true

Size: 603 Bytes

Versions: 2

Compression:

Stored size: 603 Bytes

Contents

#!/bin/sh

# Set up Rails app. Run this script immediately after cloning the codebase.

# 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

2 entries across 2 versions & 1 rubygems

Version Path
welaika-suspenders-2.29.0.alpha.1 templates/bin_setup
welaika-suspenders-2.28.0 templates/bin_setup