#!/usr/bin/env bash # This file is part of hmnoweb, a RefineryCMS based Webapp for heavymetal.no # Copyright (C) 2018 Harald Eilertsen # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License version 3 # as published by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . ruby_status=$(rbenv version |& awk '{ printf $4 " " $5 " " $6 }'|sed -r 's/[ ]+$//') echo \"${ruby_status}\" if [[ "${ruby_status}" == "is not installed" ]] then rbenv install $(cat .ruby-version) gem install bundler --no-ri --no-rdoc bundle config build.sqlite3 --with-sqlite3-dir=/usr/local fi bundle install --without=production if [ $? ]; then bundle exec rake dev:setup fi