We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 258fcae commit 0f48450Copy full SHA for 0f48450
.rvmrc
@@ -0,0 +1 @@
1
+rvm --create use 1.8.7@tinyull > /dev/null
config/setup_load_paths.rb
@@ -0,0 +1,12 @@
+if ENV['MY_RUBY_HOME'] && ENV['MY_RUBY_HOME'].include?('rvm')
2
+ begin
3
+ rvm_path = File.dirname(File.dirname(ENV['MY_RUBY_HOME']))
4
+ rvm_lib_path = File.join(rvm_path, 'lib')
5
+ $LOAD_PATH.unshift rvm_lib_path
6
+ require 'rvm'
7
+ RVM.use_from_path! File.dirname(File.dirname(__FILE__))
8
+ rescue LoadError
9
+ # RVM is unavailable at this point.
10
+ raise "RVM ruby lib is currently unavailable."
11
+ end
12
+end
0 commit comments