`require_frameworks': no such file to load -- openssl (RuntimeError)
Check whether openssl and openssl-devel installed in your linux machine or not. If no then install openssl and openssl-devel :-
=> yum install openssl
=> yum install openssl-devel
Then go to your ruby directory :-
1. cd /ruby_install_dir/ext/openssl
2. ruby extconf.rb
3. make
4. make install
Leave a Comment