Sha256: bef819bf72158b4fae4c59ccb451aa60a1e15fdb0e4a8514a3a4a7131f0fb94a
Contents?: true
Size: 695 Bytes
Versions: 17
Compression:
Stored size: 695 Bytes
Contents
#!/usr/bin/env bash ruby_string="ruby-1.9.3-p392" gemset_name="imagine_cms" alias rails='bundle exec rails' 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
17 entries across 17 versions & 1 rubygems