-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrvmrc
56 lines (45 loc) · 1.72 KB
/
rvmrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# Example ~/.rvmrc file.
#+DEST=$HOME/
#+FNAME=.rvmrc
#
# This file shows some examples of setting defaults to your own tastes.
#
# If you wish to adjust the default ruby interpreter/version/patchlevel
# settings they can be found in the $rvm_path/config/db file.
# Beware that currently that file is overwritten on install so
# back it up if you change anything.
#
# rvm Path
# This is where rvm installs and manages everything in by default.
export rvm_path="$HOME/.rvm"
# Source Path
# This is where rvm extracts to for compiling & installing.
export rvm_source_path="${rvm_path}/src"
# Log Path
# This is where rvm logs all of it's actions to
# (not including the 'do' actions)
export rvm_log_path="${rvm_path}/log"
# Bin Path
# This is where rvm places all of it's executable/wrapper scripts.
export rvm_bin_path="${rvm_path}/bin"
# Gem Path
# This is where rvm installs all gems to for each ruby
# interpreter/version%gemset
export rvm_gems_path="$rvm_path/gems"
# Temp Path
# This is where rvm stores all of its temporary files.
export rvm_tmp_path="${rvm_tmp_path:-"$rvm_path/tmp"}"
# Install On Use Flag
# Install rubies when used if are not installed.
#export rvm_install_on_use_flag=1
# Gemset Creat on use Flag
# This will create a gemset when the gemset is used if it does not exist
# export rvm_gemset_create_on_use_flag=1
# Make Flags, I have 8 cpu's so I might use 7 make threads:
#export rvm_make_flags="-j7"
# Automatically trust project .rvmrc files
# export rvm_trust_rvmrcs_flag=1
# Always trust an rvmrc, even if it's contents change.
# CAUTION: Can be dangerous / security risk. Only use this feature if you know
# what you are doing / accept the implications :)
# export rvm_always_trust_rvmrc_flag