Skip to content
This repository has been archived by the owner on Mar 14, 2019. It is now read-only.

Commit

Permalink
Merge branch 'rvmrc_fixes' of https://github.com/tpope/rvm into tpope…
Browse files Browse the repository at this point in the history
…-rvmrc_fixes
  • Loading branch information
wayneeseguin committed Feb 9, 2011
2 parents e34f22d + 6877a9b commit ff7fdea
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions scripts/utility
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,7 @@ environment_id=\"$identifier\"
#
# First we attempt to load the desired environment directly from the environment
# file, this is very fast and efficicent compared to running through the entire
# file. This is very fast and efficicent compared to running through the entire
# CLI and selector. If you want feedback on which environment was used then
# insert the word 'use' after --create as this triggers verbose mode.
#
Expand All @@ -491,7 +491,7 @@ fi
#
# If you use an RVM gemset file to install a list of gems (*.gems), you can have
# it be automatically loaded, uncomment the following and adjust the filename if
# it be automatically loaded. Uncomment the following and adjust the filename if
# necessary.
#
# filename=\".gems\"
Expand All @@ -501,17 +501,17 @@ fi
#
# If you use bundler and would like to run bundle each time you enter the
# directory you can uncomment the following code.
# directory, you can uncomment the following code.
#
# # Ensure that Bundler is installed, install it if it is not.
# if ! command -v bundle ; then
# printf \"The rubygem 'bundler' is not installed, installing it now.\\\n\"
# # Ensure that Bundler is installed. Install it if it is not.
# if ! command -v bundle >/dev/null; then
# printf \"The rubygem 'bundler' is not installed. Installing it now.\\\n\"
# gem install bundler
# fi
#
# # Bundle while redcing excess noise.
# printf \"Bundling your gems this may take a few minutes on a fresh clone.\\\n\"
# bundle | grep -v 'Using' | grep -v 'complete' | sed '/^$/d'
# # Bundle while reducing excess noise.
# printf \"Bundling your gems. This may take a few minutes on a fresh clone.\\\n\"
# bundle | grep -v '^Using ' | grep -v ' is complete' | sed '/^$/d'
#
" >> .rvmrc
Expand Down

0 comments on commit ff7fdea

Please sign in to comment.