To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / deploy / provision.d / 060-bundler.sh @ 1590:c18460da6620

History | View | Annotate | Download (284 Bytes)

1 1577:e38eee2e1d47 Chris
#!/bin/bash
2
3
set -e
4
5 1589:94669513c53c Chris
# Install Ruby gems for the web app.
6
7
# We aim to make all of these provisioning scripts non-destructive if
8
# run more than once. In this case, running the script again will
9
# install any outstanding updates.
10
11 1577:e38eee2e1d47 Chris
cd /var/www/code
12
gem install bundler
13
bundle install