aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/deps.sh
blob: 05232bf15cbfb52dd666dca737d37e537830200f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/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

pyenv install --skip-existing "$( cat .python-version )"
pyenv rehash

pip install -r requirements.txt
pyenv rehash