Sha256: f4b9be2bae2c85685a6609975932fc6283e9a2415c6d369e1aec7f5721b3ea63

Contents?: true

Size: 546 Bytes

Versions: 43

Compression:

Stored size: 546 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

# User addons installation

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

Version data entries

43 entries across 43 versions & 1 rubygems

Version Path
onotole-2.0.2 templates/bin_setup
onotole-2.0.1 templates/bin_setup
onotole-2.0.0 templates/bin_setup
onotole-1.2.11 templates/bin_setup
onotole-1.2.10 templates/bin_setup
onotole-1.2.9 templates/bin_setup
onotole-1.2.8 templates/bin_setup
onotole-1.2.7 templates/bin_setup
onotole-1.2.6 templates/bin_setup
onotole-1.2.5 templates/bin_setup
onotole-1.2.4 templates/bin_setup
onotole-1.2.3 templates/bin_setup
onotole-1.2.2 templates/bin_setup
onotole-1.2.1 templates/bin_setup
onotole-1.1.21 templates/bin_setup
onotole-1.1.20 templates/bin_setup
onotole-1.1.19 templates/bin_setup
onotole-1.1.18 templates/bin_setup
onotole-1.1.17 templates/bin_setup
onotole-1.1.16 templates/bin_setup