On Sun, Mar 30, 2008 at 1:03 PM, aslak hellesoy <[EMAIL PROTECTED]> wrote: > Hi, > > I just published a generic and platform specific gem: > http://rubyforge.org/frs/?group_id=5920 > It looks like the gems have replicated around the net: > http://rubyforge.iasi.roedu.net/gems/ > > When I do gem install ruby-usb on a Windows box, Rubygems seems to > download ruby-usb-0.1.2.gem and not ruby-usb-0.1.2-x86-mswin32.gem > > This happens for both rubygems 1.0.1 and 1.1.0 (which I just updated to). > > If I download ruby-usb-0.1.2-x86-mswin32.gem manually and install it > everything looks fine. Can anyone tell me how to fix this? The Windows > gemspec looks like the following: > > Gem::Specification.new do |s| > s.name = %q{ruby-usb} > s.version = "0.1.2" > s.platform = %q{mswin32} >
I recommend you switch to Gem::Platform::CURRENT, since mswin32 is deprecated. > > P.S. My first upload of the Windows gem was broken, so I deleted it > and uploaded it again. Can that be the culplrit? > Yes, It appears to be a issue of rubyforge that do not replicate the changed files across mirrors. Trying to install it with 0.9.4 also fails and rollback to RUBY version, and not the pre-compiled one. -- Luis Lavena Multimedia systems - Human beings, who are almost unique in having the ability to learn from the experience of others, are also remarkable for their apparent disinclination to do so. Douglas Adams _______________________________________________ Rubygems-developers mailing list [email protected] http://rubyforge.org/mailman/listinfo/rubygems-developers
