I'm following this rails cast on ajax pagination with rails. http://railscasts.com/episodes/240-search-sort-paginate-with-ajax
I'm getting the following error when i try to install jquery
rails g jquery:install
'connect': SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed (OpenSSL::SSL::SSLError)
The tutorial suggests adding this to the applicaiton.rb file but it gives the following error.
OpenSSL::SSL::VERIFY_PEER = OpenSSL::SSL::VERIFY_NONE
rails g jquery:install
`<top (required)>': uninitialized constant Object::OpenSSL (NameError)
I'm running Ruby version
ruby 1.9.2p180 (2011-02-18 revision 30909) [i386-darwin9.8.0]
and Rails version
Rails 3.0.5
Any have experience with this error?