I was trying to unpack gems into my rails project and I noticed gems that contain jars like "hpriocot" and "jrubyopenssl" weren't unpacking into "vendor/gems". Is there some limitation on this or am I just doing something stupid ? Is it just a weird issue with hpricot, since the jdbc gems seem to unpack just fine.
I noticed in my original gem directory hpricot is called "hpricot-0.6.164-java", could that be effecting it also?
This is in my environment.rb
config.gem "hpricot", :version => '0.6.164'
config.gem "memcache-client", :version => '1.7.2'
config.gem "soap4r", :version => '1.5.8'
config.gem "jruby-openssl", :version => '0.5'
config.gem "rails", :version => '2.2.2'
config.gem "activerecord-jdbcmysql-adapter", :version => '0.9.1'
config.gem "activerecord-jdbc-adapter", :version => '0.9.1'
config.gem "jdbc-mysql", :version => '5.0.4'
~Matt