From c0646186c2049e75ae932966aa0604d712b4f4c6 Mon Sep 17 00:00:00 2001 From: Miquel Sabaté Solà Date: Wed, 20 Mar 2024 11:30:20 +0100 Subject: csv: don't export underscores on "authors" MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It does not make sense on this context. Signed-off-by: Miquel Sabaté Solà --- lib/csv_exporter.rb | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to 'lib/csv_exporter.rb') diff --git a/lib/csv_exporter.rb b/lib/csv_exporter.rb index 0463ba6..3cab092 100644 --- a/lib/csv_exporter.rb +++ b/lib/csv_exporter.rb @@ -16,14 +16,9 @@ class CsvExporter < BaseExporter # Generate a new CSV line from the given `thing`. def thing_to_csv(thing:) - CSV.generate_line([thing.target, thing.authors, thing.editors, thing.year, - clean_title(title: thing.title), thing.note, thing.insideof, + CSV.generate_line([thing.target, thing.authors.delete('_'), thing.editors, thing.year, + thing.title.delete('_'), thing.note, thing.insideof, thing.url, thing.publisher, thing.kind, thing.access, thing.bought_at], quote_empty: false) end - - # Clean the given title from underscores and other such characters. - def clean_title(title:) - title.delete('_') - end end -- cgit v1.2.3