Commit c359eadf8eab096ef3193bf901b40b84488ca74d
1 parent
baa4fc8c
Exists in
master
and in
4 other branches
restore the rvmrc
Showing
1 changed file
with
1 additions
and
55 deletions
Show diff stats
.rvmrc
1 | -#!/usr/bin/env bash | |
2 | - | |
3 | -# This is an RVM Project .rvmrc file, used to automatically load the ruby | |
4 | -# development environment upon cd'ing into the directory | |
5 | - | |
6 | -# First we specify our desired <ruby>[@<gemset>], the @gemset name is optional. | |
7 | -environment_id="ruby-1.9.2-p290@gitlabhq" | |
8 | - | |
9 | -# | |
10 | -# Uncomment following line if you want options to be set only for given project. | |
11 | -# | |
12 | -# PROJECT_JRUBY_OPTS=( --1.9 ) | |
13 | - | |
14 | -# | |
15 | -# First we attempt to load the desired environment directly from the environment | |
16 | -# file. This is very fast and efficient compared to running through the entire | |
17 | -# CLI and selector. If you want feedback on which environment was used then | |
18 | -# insert the word 'use' after --create as this triggers verbose mode. | |
19 | -# | |
20 | -if [[ -d "${rvm_path:-$HOME/.rvm}/environments" \ | |
21 | - && -s "${rvm_path:-$HOME/.rvm}/environments/$environment_id" ]] | |
22 | -then | |
23 | - \. "${rvm_path:-$HOME/.rvm}/environments/$environment_id" | |
24 | - | |
25 | - if [[ -s "${rvm_path:-$HOME/.rvm}/hooks/after_use" ]] | |
26 | - then | |
27 | - . "${rvm_path:-$HOME/.rvm}/hooks/after_use" | |
28 | - fi | |
29 | -else | |
30 | - # If the environment file has not yet been created, use the RVM CLI to select. | |
31 | - if ! rvm --create "$environment_id" | |
32 | - then | |
33 | - echo "Failed to create RVM environment '${environment_id}'." | |
34 | - exit 1 | |
35 | - fi | |
36 | -fi | |
37 | - | |
38 | -# | |
39 | -# If you use an RVM gemset file to install a list of gems (*.gems), you can have | |
40 | -# it be automatically loaded. Uncomment the following and adjust the filename if | |
41 | -# necessary. | |
42 | -# | |
43 | -# filename=".gems" | |
44 | -# if [[ -s "$filename" ]] | |
45 | -# then | |
46 | -# rvm gemset import "$filename" | grep -v already | grep -v listed | grep -v complete | sed '/^$/d' | |
47 | -# fi | |
48 | - | |
49 | -# If you use bundler, this might be useful to you: | |
50 | -# if command -v bundle && [[ -s Gemfile ]] | |
51 | -# then | |
52 | -# bundle | |
53 | -# fi | |
54 | - | |
55 | - | |
1 | +rvm use 1.9.2-p290 | ... | ... |