· 1 min read

How to Use RVM and POW with Ruby 2.0.0

In your project's root directory add a .ruby-version file and add the ruby version to the file

ruby-2.0.0-p247

Next source RVM in the .powrc file, also in your project's root directory.

source "$rvm_path/scripts/rvm"
rvm use `cat .ruby-version`

You can restart your application by touching in tmp/restart.txt

touch tmp/restart.txt

Comments

Leave a comment