> -----Original Message----- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf > Of Jos Backus > Sent: Friday, August 17, 2007 12:58 PM > To: [email protected] > Subject: [Rubygems-developers] [patch] lib/rubygems/format.rb > not compatiblewith Ruby 1.9 HEAD > > > Fix: > > --- ./lib/rubygems/format.rb.orig 2007-08-17 > 14:50:37.000000000 -0400 > +++ ./lib/rubygems/format.rb 2007-08-17 14:50:59.000000000 -0400 > @@ -60,8 +60,8 @@ > format.spec = pkg.metadata > format.file_entries = [] > pkg.each do |entry| > - format.file_entries << [{"size", entry.size, > "mode", entry.mode, > - "path", entry.full_name}, entry.read] > + format.file_entries << [{"size" => entry.size, > "mode" => entry.mode, > + "path" => entry.full_name}, entry.read] > end > end > format
What difference does that make? The arrow notation is optional. Dan This communication is the property of Qwest and may contain confidential or privileged information. Unauthorized use of this communication is strictly prohibited and may be unlawful. If you have received this communication in error, please immediately notify the sender by reply e-mail and destroy all copies of the communication and any attachments. _______________________________________________ Rubygems-developers mailing list [email protected] http://rubyforge.org/mailman/listinfo/rubygems-developers
