|
3 | 3 | # This is an RVM Project .rvmrc file, used to automatically load the ruby
|
4 | 4 | # development environment upon cd'ing into the directory
|
5 | 5 |
|
6 |
| -# First we specify our desired <ruby>[@<gemset>], the @gemset name is optional. |
7 | 6 | environment_id="ruby-1.9.3@mongrel2"
|
8 | 7 |
|
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 | 8 | 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" |
| 9 | + && -s "${rvm_path:-$HOME/.rvm}/environments/$environment_id" ]]; then |
| 10 | + echo "Using ${environment_id}" |
| 11 | + . "${rvm_path:-$HOME/.rvm}/environments/$environment_id" |
24 | 12 |
|
25 |
| - if [[ -s "${rvm_path:-$HOME/.rvm}/hooks/after_use" ]] |
26 |
| - then |
27 |
| - . "${rvm_path:-$HOME/.rvm}/hooks/after_use" |
28 |
| - fi |
| 13 | + if [[ -s "${rvm_path:-$HOME/.rvm}/hooks/after_use" ]]; then |
| 14 | + . "${rvm_path:-$HOME/.rvm}/hooks/after_use" |
| 15 | + fi |
29 | 16 | 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 |
| 17 | + # If the environment file has not yet been created, use the RVM CLI to select. |
| 18 | + if ! rvm --create use "$environment_id" |
| 19 | + then |
| 20 | + echo "Failed to create RVM environment '${environment_id}'." |
| 21 | + exit 1 |
| 22 | + fi |
36 | 23 | fi
|
37 | 24 |
|
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 | 25 | filename=".rvm.gems"
|
44 |
| -if [[ -s "$filename" ]]; then |
45 |
| - rvm gemset import "$filename" |
| 26 | +if [[ -s "$filename" ]]; then |
| 27 | + rvm gemset import "$filename" |
46 | 28 | fi
|
47 | 29 |
|
48 |
| - |
| 30 | +echo "The future belongs to the dogs." |
| 31 | +echo |
49 | 32 |
|
0 commit comments