Sha256: a91449db885ead6444aaa744430297421417348489637a2aed2a3f960efef457

Contents?: true

Size: 518 Bytes

Versions: 53

Compression:

Stored size: 518 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/rake dev:prime

# Add binstubs to PATH via export PATH=".git/safe/../../bin:$PATH" in ~/.zshenv
mkdir -p .git/safe

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

Version data entries

53 entries across 53 versions & 9 rubygems

Version Path
slining-1.7.0 templates/bin_setup
voyage-1.44.0.14 templates/bin_setup
voyage-1.44.0.13 templates/bin_setup
voyage-1.44.0.11 templates/bin_setup
voyage-1.44.0.12 templates/bin_setup
voyage-1.44.0.10 templates/bin_setup
voyage-1.44.0.9 templates/bin_setup
voyage-1.44.0.8 templates/bin_setup
voyage-1.44.0.7 templates/bin_setup
voyage-1.44.0.6 templates/bin_setup
voyage-1.44.0.5 templates/bin_setup
voyage-1.44.0.4 templates/bin_setup
voyage-1.44.0.3 templates/bin_setup
voyage-1.44.0.2 templates/bin_setup
voyage-1.44.0.1 templates/bin_setup
suspenders-1.44.0 templates/bin_setup
suspenders-1.43.0 templates/bin_setup
code42template-2.1.0 templates/bin_setup
slining-1.6.0 templates/bin_setup
code42template-2.0.0 templates/bin_setup