Re: [MacRuby-devel] csv.rb oddity

2011-01-07 Thread Robert Rice
Hi Gang: The CSV package provides several different methods to read and parse CSV files and I use several of the options in my application without any problems. The CSV.open method returns an instance of CSV as the error indicates. You invoke the shift method on a CSV instance to parse a line f

Re: [MacRuby-devel] csv.rb oddity

2011-01-06 Thread Laurent Sansonetti
Hi Buddy, Thanks for checking. As a rule of thumb, if a given snippet works with CRuby 1.9.2, then it should work in MacRuby too :) Laurent On Jan 6, 2011, at 2:50 PM, Buddy Lindsey, Jr. wrote: > Laurent, > > Sure I can do that. I just wanted to check here before I did that incase it a > pro

Re: [MacRuby-devel] csv.rb oddity

2011-01-06 Thread Buddy Lindsey, Jr.
Laurent, Sure I can do that. I just wanted to check here before I did that incase it a problem with me. Buddy --- Buddy Lindsey http://www.buddylindsey.com http://www.twitter.com/buddylindsey On Thu, Jan 6, 2011 at 4:45 PM, Laurent Sansonetti wrote: > Hi Buddy, > > It doesn't look like a MacRu

Re: [MacRuby-devel] csv.rb oddity

2011-01-06 Thread Laurent Sansonetti
Hi Buddy, It doesn't look like a MacRuby bug. Maybe the csv.rb library hasn't been updated recently. Could you file a ticket? We will have a look. Laurent On Jan 6, 2011, at 12:05 PM, Buddy Lindsey, Jr. wrote: > I am not sure if I am just doing something wrong or what, but I am trying to > re

[MacRuby-devel] csv.rb oddity

2011-01-06 Thread Buddy Lindsey, Jr.
I am not sure if I am just doing something wrong or what, but I am trying to read in a CSV file and it seems the code I use for ruby 1.9.2 works fine, but not in MacRuby. I think I am doing something wrong, but not quite sure what since I am still new to MacRuby and getting familiar with it. I hav