I have a rails app that runs fine with rails s, but when I try to load it using pow I\'m getting this error:
rails s
Bundler::GemNotFound: Could not find ra
I ran into this issue when I changed from .rvmrc to .ruby-version and .ruby-gemset files.
Change your .powrc file to be:
if [ -f "$rvm_path/scripts/rvm" ] && [ -f ".ruby-version" ] && [ -f ".ruby-gemset" ]; then source "$rvm_path/scripts/rvm" rvm use `cat .ruby-version`@`cat .ruby-gemset` fi