|
| 1 | +# Example ~/.rvmrc file. |
| 2 | +# |
| 3 | +# This file shows some examples of setting defaults to your own tastes. |
| 4 | +# |
| 5 | +# If you wish to adjust the default ruby interpreter/version/patchlevel |
| 6 | +# settings they can be found in the $rvm_path/config/db file. |
| 7 | +# Beware that currently that file is overwritten on install so |
| 8 | +# back it up if you change anything. |
| 9 | + |
| 10 | +# RVM path |
| 11 | +# This is where rvm installs and manages everything in by default. |
| 12 | +# |
| 13 | +# export rvm_path="$HOME/.rvm" |
| 14 | + |
| 15 | +# Source path |
| 16 | +# This is where rvm extracts to for compiling & installing. |
| 17 | +# |
| 18 | +# export rvm_source_path="${rvm_path}/src" |
| 19 | + |
| 20 | +# Log path |
| 21 | +# This is where rvm logs all of it's actions to |
| 22 | +# (not including the 'do' actions) |
| 23 | +# |
| 24 | +# export rvm_log_path="${rvm_path}/log" |
| 25 | + |
| 26 | +# Bin path |
| 27 | +# This is where rvm places all of it's executable/wrapper scripts. |
| 28 | +# |
| 29 | +# export rvm_bin_path="${rvm_path}/bin" |
| 30 | + |
| 31 | +# Gem path |
| 32 | +# This is where rvm installs all gems to for each ruby |
| 33 | +# interpreter/version%gemset |
| 34 | +# |
| 35 | +# export rvm_gems_path="$rvm_path/gems" |
| 36 | + |
| 37 | +# Gem options |
| 38 | +# These options are passed to the 'gem' command in a RVM environment. |
| 39 | +# |
| 40 | +# export rvm_gem_options="--no-rdoc --no-ri" |
| 41 | + |
| 42 | +# Temp path |
| 43 | +# This is where rvm stores all of its temporary files. |
| 44 | +# |
| 45 | +# export rvm_tmp_path="${rvm_tmp_path:-"$rvm_path/tmp"}" |
| 46 | + |
| 47 | +# Install on use |
| 48 | +# Install rubies when used if are not installed. |
| 49 | +# |
| 50 | +export rvm_install_on_use_flag=1 |
| 51 | + |
| 52 | +# Gemset create on use |
| 53 | +# This will create a gemset when the gemset is used if it does not exist |
| 54 | +# |
| 55 | +export rvm_gemset_create_on_use_flag=1 |
| 56 | + |
| 57 | +# Make flags |
| 58 | +# I have 8 cpu's so I might use 7 make threads: |
| 59 | +# |
| 60 | +export rvm_make_flags="-j7" |
| 61 | + |
| 62 | +# Source a .rvmrc file in a directory after changing to it, if it exists. |
| 63 | +# To disable this feature, set in root/home .rvmrc file: |
| 64 | +# |
| 65 | +# export rvm_project_rvmrc=0 |
| 66 | +# |
| 67 | +# Or don't even bother sourcing rvm, it *is* optional. Always has been, you can |
| 68 | +# instead add $rvm_path/bin to your PATH and use --default to switch... |
| 69 | + |
| 70 | +# Automatically trust project .rvmrc files |
| 71 | +# |
| 72 | +# export rvm_trust_rvmrcs_flag=1 |
| 73 | + |
| 74 | +# Always trust an rvmrc, even if it's contents change. |
| 75 | +# CAUTION: Can be dangerous / security risk. Only use this feature if you know |
| 76 | +# what you are doing / accept the implications :) |
| 77 | +# |
| 78 | +# export rvm_always_trust_rvmrc_flag |
| 79 | + |
| 80 | +# Specify RBXOPT enviroment settings that should always be set when calling |
| 81 | +# Rubinius scripts. For example, to always run the agent when running from |
| 82 | +# an Rubinius environment, set the value to '-Xagent' |
| 83 | +# |
| 84 | +# export rvm_rbx_opt |
| 85 | + |
| 86 | +# Disable automatic system configuration of RVM via /etc/profile.d/rvm.sh: |
| 87 | +# |
| 88 | +# export rvm_etc_profile_flag=0 |
| 89 | + |
| 90 | +# Add configure flags for builds |
| 91 | +# |
| 92 | +# export rvm_configure_flags="--with-openssl-dir=$rvm_path/usr --with-readline-dir=$rvm_path/usr" |
0 commit comments