Skip to content

Instantly share code, notes, and snippets.

@hjhart
Created June 18, 2019 21:52
Show Gist options
  • Save hjhart/6a0fe4acd5eaf1b728e83ae7e4edbf2b to your computer and use it in GitHub Desktop.
Save hjhart/6a0fe4acd5eaf1b728e83ae7e4edbf2b to your computer and use it in GitHub Desktop.
bundle_install:
description: Bundle Install
steps:
- restore_cache:
keys:
- bundle-{{ arch }}-{{ checksum "~/voom/Gemfile.lock" }}
- bundle-{{ arch }}-
- run:
name: Install Bundler
command: gem install bundler -v 1.17.3
- run:
name: Bundle Install
command: cd ~/voom/; bundle check || bundle install --without production --without staging
- save_cache:
key: bundle-{{ arch }}-{{ checksum "~/voom/Gemfile.lock" }}
paths:
- ~/voom/vendor/bundle
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment