Sha256: 2d05ee36720654d1fca74dd67bf6337e59b85c02083b71b649a26637969a3dba
Contents?: true
Size: 663 Bytes
Versions: 2
Compression:
Stored size: 663 Bytes
Contents
#!/usr/bin/env bash ruby_string="ruby-2.1.0" gemset_name="state-objects" if rvm list strings | grep -q "${ruby_string}" ; then # Load or create the specified environment if [[ -d "${rvm_path:-$HOME/.rvm}/environments" \ && -s "${rvm_path:-$HOME/.rvm}/environments/${ruby_string}@${gemset_name}" ]] ; then \. "${rvm_path:-$HOME/.rvm}/environments/${ruby_string}@${gemset_name}" else rvm --create "${ruby_string}@${gemset_name}" fi else # Notify the user to install the desired interpreter before proceeding. echo "${ruby_string} was not found, please run 'rvm install ${ruby_string}' and then cd back into the project directory." fi
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
state_objects-0.9.2 | DOTrvmrc |
state_objects-0.9.1 | DOTrvmrc |