Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In OS X in rvm how do I check if openssl is configured properly? I get the cannot load such file -- openssl (LoadError) And I have tried everything in Rails 3 - no such file to load -- openssl with no success.

share|improve this question

2 Answers

Check what rubies are installed:

rvm list

Then make sure to use one of the installed rubies:

rvm use 1.9.3-p327

And test if openssl is available:

ruby -ropenssl -e "puts :OK"

It will print OK if openssl is enabled, otherwise you will get exception

In case of exception run:

rvm requirements run force
rvm pkg remove

Followed by:

rvm reinstall all --force

This instruction is not OSX specific, it will work on all platforms, although on OSX it will work best with HomeBrew, when it's not installed only list of required software will be shown and you need to install it manually.

UPDATE: new version of rvm has improved automation support:

rvm get head
rvm autolibs enable
rvm reinstall all --force
share|improve this answer
I still get the same error. Also I've reinstalled ruby with sudo rvm install 1.9.3 --with-openssl-dir=$HOME/.rvm/usr – Bruno Feb 13 at 9:18
1  
worked great, thanks! (I didn't need to do the rvm pkg remove step) – uglymunky Mar 7 at 0:41
I have been struggling with this install for 11+ hours. Yours are the only instructions that actually worked. THANK YOU!!!! – AcroYogi Mar 13 at 11:58
I tried to get this working months ago and gave up. Came back and saw this and it fixed my issue. Thanks so much! – gsteiner Mar 19 at 14:36
Thanks! The UPDATE is what worked great for me. – Ryan Mar 26 at 20:48
show 1 more comment

I uninstalled everything (rvm, rails, ruby, etc) on my macbook.

Installed homebrew

Installed rvm

Ran rvm requirements run force

Ran rvm install rails

rails new sample_app

cd sample_app

Note: source 'https://rubygems.org' is present in Gemfile, openssl is required!

bundle install and it worked!

No need to specify: --with-openssl-dir=$HOME/.rvm/usr

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.