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