Jruby-openssl error not resolvable

Hi,

I am unable to use the jdbc adapter due to jruby-openssl issues.

(a) I have already installed jruby-openssl …

jgem install jruby-openssl
Successfully installed jruby-openssl-0.7.3
1 gem installed

jruby -S rake --trace db:migrate
JRuby limited openssl loaded. http://jruby.org/openssl
gem install jruby-openssl for full support.
rake aborted!
OpenSSL::BN requires the jruby-openssl gem

I am running on windows XP.

On Apr 8, 2011, at 12:57 PM, Stephen B. wrote:

jruby -S rake --trace db:migrate
JRuby limited openssl loaded. http://jruby.org/openssl
gem install jruby-openssl for full support.
rake aborted!
OpenSSL::BN requires the jruby-openssl gem

I am running on windows XP.

looks like you’re running a rails project. Are you using bundler? (you
are if there’s a Gemfile in your rails root dir)
If so, add this to the Gemfile

gem “jruby-openssl”

Mike

thanks Mike, i did realize that few minutes after posting.

I’m apparently making a mistake by doing my first rails project under
jruby.
There are some issues that are jruby specific and some that are user
error
(noobie-me) specific

I’m now getting :

rake aborted!
uninitialized constant Cacher

I might give up on JRuby for a while and use vanilla Ruby… until I get
more experience.

2011/4/8 Mike L. [email protected]