Thanks Sean. Changing the def zipped_stream(entry)Method fixed the problem.
I had found a post from someone else having this problem in Capistrano but they were able to get round it by updating Gems, but that didn't work for me. Your help is much appreciated. Sharon ---------------------------------------------------------------------- Message: 1 Date: Mon, 2 Jul 2007 08:02:16 -0500 From: "Sean Cribbs" <[EMAIL PROTECTED]> Subject: Re: [Radiant] Zlib::BufError To: [email protected] Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; charset=ISO-8859-1; format=flowed There was some discussion of this problem on the Capistrano mailing list too. Apparently, it's a bug in RubyGems. Here's the fix, from Jamis: ------------------------- P.S. If you are on a Windows machine, and you get Zlib errors trying to install the Capistrano gem, try this. Find the rubygems/package.rb file (wherever it happens to be in your Ruby installation), open it up, and find the zipped_stream method. Then, replace it, wholesale, with the following: def zipped_stream(entry) entry.read(10) # skip the gzip header zis = Zlib::Inflate.new(-Zlib::MAX_WBITS) is = StringIO.new(zis.inflate(entry.read)) ensure zis.finish if zis end ------------------------ Cheers, Sean On 7/2/07, Sharon Clift <[EMAIL PROTECTED]> wrote: > I'm having a problem upgrading from 0.6.1 to 0.6.2 on my local (Windows > XP) test machine. I have tried this on a couple of Windows machines and > each time I get a (Zlib::BufError) buffer error. > > On my local machine I have updated Ruby to version 1.8.6 and have > updated Ruby Gems to 0.9.4. I have also tried a clean install of Ruby, > Gems and Radiant on a newly formatted machine, but again get the buffer > error. > > Any help would be appreciated. > > Thanks > > Sharon This e-mail has been scanned for all viruses by MessageLabs. _______________________________________________ Radiant mailing list Post: [email protected] Search: http://radiantcms.org/mailing-list/search/ Site: http://lists.radiantcms.org/mailman/listinfo/radiant
