“bad ecpoint” SSL error on fresh RVM Ruby 1.9.3 install on OSX Mountain Lion

后端 未结 1 683
孤街浪徒
孤街浪徒 2020-12-20 05:13

Trying to use Ruby 1.9.3 & rest-client to make https requests like:

RestClient.get(\'https://google.com\')

always gives me

相关标签:
1条回答
  • 2020-12-20 06:08

    Explaining my comment...

    Update RVM to latest development version (but stable should work too):

    rvm get head
    

    Install all required libraries for ruby (autolibs=4 is for full automation):

    rvm --autolibs=4 --debug requirements
    

    Finally reinstall ruby:

    rvm reinstall 1.9.3
    

    You can enable full library automation within RVM for next commands with:

    rvm autolibs enable
    
    0 讨论(0)
提交回复
热议问题