i get the above error, all i did was install rvm and update to ruby 1.9.2 from the default ruby that you get with mac.
all my gems appear in the gem list but do i need to specify a path somewhere?
cheers,
glenno.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Check that you have the gems installed
gem listIf not, install as usualgem install whateveror if you want a specific versiongem install whatever -v 1.2.3Or if you have bundler in your project (ie Rails), it’s justbundle installIf you have all the gems, then this is probably a local file, and you’re probably coming from Ruby version < 1.9, you need to either fix your
$LOAD_PATH(which will depend on too many factors for me to explain here), or specify the full path to the file you wantFile.dirname(__FILE__) + '/myapp'Otherwise, you need to give more info, like what version you used to be running, what
myappis, and where it is in relation to your file.