Skip to content

Instantly share code, notes, and snippets.

@gregmolnar
Created October 2, 2012 21:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gregmolnar/3823297 to your computer and use it in GitHub Desktop.
Save gregmolnar/3823297 to your computer and use it in GitHub Desktop.
Rails rvm initializer
if ENV['MY_RUBY_HOME'] && ENV['MY_RUBY_HOME'].include?('rvm')
begin
require 'rvm'
RVM.use_from_path! File.dirname(File.dirname(__FILE__))
rescue LoadError
raise "RVM gem is currently unavailable."
end
end
# If you're not using Bundler at all, remove lines bellow
ENV['BUNDLE_GEMFILE'] = File.expand_path('../Gemfile', File.dirname(__FILE__))
require 'bundler/setup'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment