From 794bae3767446c8e0108bb74cc76ce505f23abd3 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Mon, 26 Dec 2022 11:17:49 +0100 Subject: add deps.sh to install working versions --- deps.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 deps.sh (limited to 'deps.sh') diff --git a/deps.sh b/deps.sh new file mode 100755 index 0000000..0f06db4 --- /dev/null +++ b/deps.sh @@ -0,0 +1,13 @@ +#!/usr/bin/env bash + +set -o errexit -o nounset -o pipefail +shopt -s inherit_errexit lastpipe + +rbenv install --skip-existing "$( cat .ruby-version )" +rbenv rehash + +gem install bundler -v "$( tail -n 1 Gemfile.lock )" +rbenv rehash + +bundle install +rbenv rehash -- cgit v1.2.3