Bug #10246
closedCSV.parse(csv_string, headers: col_headers) reports undefined method `table'
Description
I've detailed repro steps here: http://railsonmaui-octopress.dev/blog/2014/09/15/pry-ruby-array-zip-csv-and-the-hash-constructor/
[12] (pry) main: 0> csv = CSV.parse(csv_string, headers: col_headers)
(pry) output error: #<NoMethodError: undefined method `table' for #<Object:0x007fdbfc8d5588>>
The CSV docs clearly state that the initialize method takes an option :headers
Updated by nobu (Nobuyoshi Nakada) about 11 years ago
- Description updated (diff)
Justin Gordon wrote:
I've detailed repro steps here: http://railsonmaui-octopress.dev/blog/2014/09/15/pry-ruby-array-zip-csv-and-the-hash-constructor/
I can't access that site, can anybody show the content?
Updated by avit (Andrew Vit) about 11 years ago
Aloha Justin,
Looks like the correct URL is here:
http://www.railsonmaui.com/blog/2014/09/15/pry-ruby-array-zip-csv-and-the-hash-constructor/
The CSV headers option is working, I use it myself all the time. Is the problem that you're trying to parse an invalid CSV string? That's what it looks like in your blog post because you use it again further down after fixing the input and it's fine.
Updated by hsbt (Hiroshi SHIBATA) about 11 years ago
- Status changed from Open to Feedback
Updated by jeremyevans0 (Jeremy Evans) about 6 years ago
- Status changed from Feedback to Closed