Sha256: 851f4285a83719e4ffe65a5a3fc5f55cc234c698eb42fb8b5515d1ca57dd91e0

Contents?: true

Size: 886 Bytes

Versions: 2

Compression:

Stored size: 886 Bytes

Contents

#!/bin/bash 
# This is a simple setup script that generates an enviroment file that
# is used to setup the ruby enviroment to run the urbanopt-cli tool.
# To use, just run this script in bash (e.g. ./setup-env.sh)
# Then you can use this env.sh to setup the enviroment.
# (e.g. . env.sh)


BASE_DIR_NAME=$(dirname `which $0`)

GEM_HOME=${BASE_DIR_NAME}/gems
GEM_PATH=${BASE_DIR_NAME}/gems
PATH=${BASE_DIR_NAME}/ruby/bin:${BASE_DIR_NAME}/gems/bin:$PATH
RUBYLIB=${BASE_DIR_NAME}/OpenStudio/Ruby
RUBY_DLL_PATH=${BASE_DIR_NAME}/OpenStudio/Ruby

#Remove if exists
if [ -f ~/.env_uo.sh ]; then
  rm ~/.env_uo.sh
fi

echo "export GEM_HOME=\"${GEM_HOME}\"" >> ~/.env_uo.sh
echo "export GEM_PATH=\"${GEM_PATH}\"" >> ~/.env_uo.sh
echo "export PATH=\"${PATH}\"" >> ~/.env_uo.sh
echo "export RUBYLIB=\"${RUBYLIB}\"" >> ~/.env_uo.sh
echo "export RUBY_DLL_PATH=\"${RUBY_DLL_PATH}\"" >> ~/.env_uo.sh

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
urbanopt-cli-0.4.1 scripts/setup-env-gitbash.sh
urbanopt-cli-0.4.0 scripts/setup-env-gitbash.sh