Skip to content

Commit

Permalink
Adding .powrc to allow RVM to work when POW is updated to version 0.4…
Browse files Browse the repository at this point in the history
….0 and beyond.

Support for automatically handling .rvmrc files in projects is being deprecated in
POW version 0.4.0 and beyond. RVM will still work but project will need to have a
.powrc file that detects the presence of and then loads RVM.

The code in the .powrc could also be in the .powenv file, however the .powrc loads
first and is the configuration file recommended for inclusion in version control.
  • Loading branch information
zanshin committed Jun 8, 2012
1 parent 48cd279 commit 944255f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .powrc
@@ -0,0 +1,5 @@
if [ -f "$rvm_path/scripts/rvm" ] && [ -f ".rvmrc" ] ; then
source "$rvm_path/scripts/rvm"
source ".rvmrc"
fi

0 comments on commit 944255f

Please sign in to comment.