From: Brian Candler Date: 2010-03-26T20:48:12+09:00 Subject: Re: uninitialized constant CSV::Reader Nathan Sharkey wrote: > require 'csv' > > CSV::Reader.parse(File.open('stuff.csv', 'rb')) do |row| ... > NameError: uninitialized constant CSV::Reader ... > any ideas?? Perhaps you have another file called csv.rb which is earlier in your $LOAD_PATH (If your own program is called csv.rb, that would the the culprit :-) In any case, you'd probably be better off with the fastercsv gem. -- Posted via http://www.ruby-forum.com/.