Sha256: 827896230f0e80656b70209b2c84fddf37aa4e9d4d50b5dd5c63d2cb993e0b91

Contents?: true

Size: 809 Bytes

Versions: 14

Compression:

Stored size: 809 Bytes

Contents

#!/usr/bin/env 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 configurable environment variables
if [ ! -f config/application.yml ]; then
  cp config/application.yml.sample config/application.yml
fi

# Set up database and add any development seed data
bundle exec rake db:setup dev:prime

# Get mailcatcher up and running
gem list -i mailcatcher || gem install mailcatcher --no-ri --no-rdoc
nc -z localhost 1025 || mailcatcher

# Install foreman
gem list -i foreman || gem install foreman --no-ri --no-rdoc

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

Version data entries

14 entries across 14 versions & 2 rubygems

Version Path
anadea-spark-0.5.0 templates/bin/setup.erb
anadea-spark-0.4.4 templates/bin/setup.erb
anadea-spark-0.4.3 templates/bin/setup.erb
anadea-spark-0.4.2 templates/bin/setup.erb
anadea-spark-0.4.1 templates/bin/setup.erb
anadea-spark-0.4.0 templates/bin/setup.erb
anadea-spark-0.3.2 templates/bin/setup.erb
anadea-spark-0.3.1 templates/bin/setup.erb
anadea-spark-0.3.0 templates/bin/setup.erb
anadea-spark-0.2.1 templates/bin/setup.erb
anadea-spark-0.2.0 templates/bin/setup.erb
yupi-0.1.4 templates/bin/setup.erb
yupi-0.1.3 templates/bin/setup.erb
yupi-0.1.2 templates/bin/setup.erb