Skip to content

Instantly share code, notes, and snippets.

@andersonsp
Created November 18, 2010 22:26
Show Gist options
  • Save andersonsp/705779 to your computer and use it in GitHub Desktop.
Save andersonsp/705779 to your computer and use it in GitHub Desktop.
fork of the darcy's setup_load_paths.rb from http://bit.ly/rvm-passenger-slp
if ENV['MY_RUBY_HOME'] && ENV['MY_RUBY_HOME'].include?('rvm')
begin
rvm_path = File.dirname(File.dirname(ENV['MY_RUBY_HOME']))
rvm_lib_path = File.join(rvm_path, 'lib')
$LOAD_PATH.unshift rvm_lib_path
require 'rvm'
dir = File.dirname(File.dirname(__FILE__))
rvmrc = File.join(dir, ".rvmrc")
if File.exists? rvmrc
RVM.use! File.read(rvmrc)[ /[\w\d\.-_]*@[\w\d\.-_]*/ ]
else
raise ".rvmrc file not found"
end
rescue LoadError
# RVM is unavailable at this point.
raise "RVM ruby lib is currently unavailable."
end
end
# Select the correct item for which you use below.
# If you're not using bundler, remove it completely.
# If we're using a Bundler 1.0 beta
ENV['BUNDLE_GEMFILE'] = File.expand_path('../Gemfile', File.dirname(__FILE__))
require 'bundler/setup'
# Or Bundler 0.9...
if File.exist?(".bundle/environment.rb")
require '.bundle/environment'
else
require 'rubygems'
require 'bundler'
Bundler.setup
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment