class EasyCSV::DoubleQuoteWrapper
Public Class Methods
new(row)
click to toggle source
# File lib/easycsv/double_quote_wrapper.rb, line 4 def initialize(row) @row = row end
Public Instance Methods
wrap()
click to toggle source
# File lib/easycsv/double_quote_wrapper.rb, line 8 def wrap @row.map{|e| "\"#{e}\""} end