Code Monkey home page Code Monkey logo

Comments (6)

kou avatar kou commented on July 21, 2024

:converters option is for reading CSV data not for writing CSV data.
Can you show your use case for using converters on wiring CSV data?

from csv.

paniko0 avatar paniko0 commented on July 21, 2024

Basically because of a this CVE

We are using ActiveAdmin and it uses generate_line to generate CSVs. We basically want to add an apostrophe in the beggining of the line if it starts with an = sign. (Basically samething as mentioned here). We didn't monkey-patch it because in Ruby's CSV docs we saw:

generate_line(row, options = Hash.new)
...
The options parameter can be anything ::new understands.
...

Perhaps the doc should be changed?

Cheers

from csv.

esparta avatar esparta commented on July 21, 2024

As @kou comments, the converters are for reading, not writing, and yes, perhaps the doc need to be more specific. More than 'anything than ::new understand' should be something like 'anything that ::new understands and applies'.

Checking the code, and correct me if I'm wrong, the only supported options when using generate_line are

In this case are more than only :colsep, :rowsep and :quote:

v = ["'a'", 'b']
headers = %w(first second)
l1 = CSV.generate_line(v, row_sep: '.', col_sep: '~', quote_char: '!',
                       force_quotes: true, write_headers: true, headers: headers, 
                       encoding: 'EUC-JP')
 => "!first!~!second!.!'a'!~!b!."
l1.encoding
 => #<Encoding:EUC-JP>

from csv.

kou avatar kou commented on July 21, 2024

@paniko0 Thanks for describing your use case. It makes sense.

We can't reuse :converters for this use case because it's for CSV -> Ruby. We need Ruby -> CSV for this use case.

It's OK to me that we add :write_converters for this use case.

from csv.

kou avatar kou commented on July 21, 2024

@esparta Thanks for your follow-up comment.
We can't reuse existing options for this use case because we need to care each data for this use case.

from csv.

paniko0 avatar paniko0 commented on July 21, 2024

Hi @kou,

Sorry about the late response. I can add the write_conventers option. Can you elaborate a little bit more what this method should do? I am assuming it should receive a Proc and run it against each value of the array. Am I in the right direction?

Cheers

from csv.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.