Sha256: dc6b92e43a27cb16771871e2e0ca3517e7465333722eb6b518fca036c4cb3269
Contents?: true
Size: 671 Bytes
Versions: 2
Compression:
Stored size: 671 Bytes
Contents
#!/usr/bin/env bash ruby_string="ruby-1.9.2-p290" gemset_name="heroku_rails_dev" 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 |
---|---|
heroku-rails-saas-1.0.3 | .rvmrc |
heroku-rails-saas-1.0.2 | .rvmrc |