Exception PhusionPassenger::UnknownError in PhusionPassenger::ClassicRails::ApplicationSpawner (The given ruby environment requires system (versus ruby-x.x.x-pxxx) (RVM::IncompatibleRubyError))It took changing my .rvmrc file from this:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rvm ruby-x.x.x-pxxx@rails3x |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if [[ -s "/usr/local/rvm/environments/ruby-x.x.x-pxxx@rails3x" ]] ; then | |
. "/usr/local/rvm/environments/ruby-x.x.x-pxxx@rails3x" | |
else | |
rvm --create use "ruby-x.x.x-pxxx@rails3x" | |
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
begin | |
rvm_path = File.dirname(File.dirname('path/to/rvm/rubies/ruby-x.x.x-pxxx')) | |
rvm_lib_path = File.join(rvm_path, 'lib') | |
# $LOAD_PATH.unshift rvm_lib_path | |
require 'rvm' | |
module RVM | |
class Environment | |
#Converts a ruby identifier (string + gemset) to just the ruby string. | |
def self.identifier_to_ruby_string(identifier) | |
return "ruby-x.x.x-pxxx" | |
end | |
end | |
end | |
RVM.use_from_path! File.dirname(File.dirname(__FILE__)) | |
rescue LoadError | |
# RVM is unavailable at this point. | |
raise "RVM ruby lib is currently unavailable." | |
end | |
ENV['BUNDLE_GEMFILE'] = File.expand_path('../Gemfile', File.dirname(__FILE__)) | |
require 'bundler/setup' | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# $:.unshift(File.expand_path('./lib', ENV['rvm_path'])) # Add RVM's lib directory to the load path. # commented out to fix upgrade | |
require "rvm/capistrano" # Load RVM's capistrano plugin. | |
set :rvm_ruby_string, 'ruby-x.x.x-pxxx@rails3x' # Or whatever rvm environment you want it to run in. | |
set :rvm_bin_path, "/path/to/rvm/bin" | |
set :rvm_type, :system |