Sha256: 33cd7f9bd0f8d09e34653c80e70f9eb31bb5e7afe572fa1ee0351d331390ad91
Contents?: true
Size: 630 Bytes
Versions: 3
Compression:
Stored size: 630 Bytes
Contents
#!/usr/bin/env sh # Set up Jekyll site. 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. # If running on CircleCI, ensure gems are cached by using vendor folder. if [ -z "$CIRCLECI" ]; then gem install bundler --conservative bundle check || bundle install bundle update else bundle check --path=vendor/bundle || bundle install --path=vendor/bundle --jobs=4 --retry=3 fi # Set up JS dependencies via Bower. bower --version > /dev/null || npm install -g bower bower install
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
jalpha-0.3.1 | template/bin/setup |
jalpha-0.3 | template/bin/setup |
jalpha-0.2 | template/bin/setup |