I'm going through the second edition of Ruby on Rails Tutorial (http://ruby.railstutorial.org/). I'm following each step, so I'm using Ruby 1.9.3 and when I run 'bundle install' inside my Rails project I an error with a big trace of the error which starts with this:

/Users/sebasoga/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/net/http.rb:799: [BUG] Segmentation fault ruby 1.9.3p125 (2012-02-16 revision 34643) [x86_64-darwin10.8.0]

I'm now using Ruby 1.9.2 and it works fine, but shouldn't it also work with Ruby 1.9.3?

link|improve this question
Possibly relevant, if you have MacPorts installed: stackoverflow.com/questions/9136694 – sampablokuper yesterday
feedback

2 Answers

This one worked for me:

rvm pkg install iconv
rvm pkg install openssl
rvm reinstall 1.9.3 --with-openssl-dir=~/.rvm/usr --with-iconv-dir=~/.rvm/usr

It's based in the solution on this blog. I also tried the one here, which is based on macports and it didn't work. But to be honest I didn't care updating my macports, so maybe that's why it didn't work.

Also I found these other two issues describing the problem and giving suggestions: 4050, 4766

link|improve this answer
It helped me, twice – morphium Mar 2 at 15:38
I followed the rabbit hole and tried some of the other methods first, but ultimately installing openssl as an rvm pkg was what worked for me as well. If you don't use iconv, ignore that install. You may also want to use $rvm_path/usr if your rvm install is in an unusual location. – tlbrack Mar 21 at 18:44
Thanks for the correction, @tlback. – pedrofurla Mar 24 at 18:26
It's not related to the ssl/tls issue, but when building ruby on Lion with XCode 4.2, I also needed to add --with-gcc=clang per the thread at stackoverflow.com/questions/8032824/… (edit 3 of the accepted answer) – pduey Apr 6 at 15:24
helped me too :) – Sayanee Apr 15 at 8:54
feedback

Seems like there's an issue with a package in 1.9.3 and xcode 4.2 if you're running that? Spotted somewhere on SO that going back to 4.1 is a fix. I stayed with 1.9.2

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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