From 944255f8795009376a4ca98a5ca53f6bad720416 Mon Sep 17 00:00:00 2001 From: Mark Nichols Date: Fri, 8 Jun 2012 13:58:52 -0500 Subject: [PATCH] Adding .powrc to allow RVM to work when POW is updated to version 0.4.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. --- .powrc | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .powrc diff --git a/.powrc b/.powrc new file mode 100644 index 0000000..4777f08 --- /dev/null +++ b/.powrc @@ -0,0 +1,5 @@ +if [ -f "$rvm_path/scripts/rvm" ] && [ -f ".rvmrc" ] ; then + source "$rvm_path/scripts/rvm" + source ".rvmrc" +fi + \ No newline at end of file