#!/usr/bin/env bash last_wd=$(pwd) cd "/tmp/neetob/" bundle install echo "Building gem..." bundle exec rake build echo -e "\nHold tight! The next step might take some time..." gem install "/tmp/neetob/pkg/neetob*.gem" cd "${last_wd}" rm -rf "/tmp/neetob/" echo -e "\n" cat <