1

After upgrading to Rails 3.2.13, I've started getting errors about jruby/openssl.

(LoadError) no such file to load -- jruby/openssl

I'm using JRuby 1.6.7, jruby-openssl 0.8.6, and Rails 3.2.13.

Has anyone been able to solve this?

  • you have the gem in your gem file right? and you have run bundle install, right? – M.Octavio Mar 20 '13 at 16:19
  • Yes to both questions. –  Mar 20 '13 at 16:24
  • This app was working before the rails upgrade (was on 3.2.12). The only thing I changed was the rails version in Gemfile and reran bundle install. –  Mar 20 '13 at 16:26
  • look at this.. I would try using jruby 1.7.2 or .3 but also look at this:require 'jruby/openssl/gem_only' info: http://jruby.org/openssl – M.Octavio Mar 20 '13 at 16:30

1 Answers1

0

JRuby-OpenSSL version 0.8.x is incompatible with anything less than JRuby 1.7.x.

JRuby-OpenSSL version 0.7.x can still be used with JRuby 1.6.x.

Downgrading the jruby-openssl gem version should resolve this issue.