Sha256: 22f9ea3bd9504178672cd158411a83e862f2d822af42f54fbe1a8d39965e9038
Contents?: true
Size: 870 Bytes
Versions: 3
Compression:
Stored size: 870 Bytes
Contents
ruby_string="ruby-1.9.2-p180" gemset_name="fluxtuna" 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 # Ensure that Bundler is installed, install it if it is not. if ! command -v bundle ; then gem install bundler fi # Bundle while reducing excess noise. bundle | grep -v 'Using' | grep -v 'complete' | sed '/^$/d' 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
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
FluxTuna-0.0.5 | .rvmrc |
FluxTuna-0.0.4 | .rvmrc |
FluxTuna-0.0.3 | .rvmrc |