Module: Sequel::Plugins::CsvSerializer::InstanceMethods

Defined in:
lib/sequel/plugins/csv_serializer.rb

Instance Method Summary collapse

Instance Method Details

#from_csv(csv, opts = {}) ⇒ Object

Update the object using the data provided in the first line in CSV. Options:

:headers

The headers to use for the CSV line. Use nil for a header to specify the column should be ignored.



128
129
130
131
132
# File 'lib/sequel/plugins/csv_serializer.rb', line 128

def from_csv(csv, opts = {})
  row = CSV.parse_line(csv, model.process_csv_serializer_opts(opts)).to_hash
  row.delete(nil)
  set(row)
end

#to_csv(opts = {}) ⇒ Object

Return a string in CSV format. Accepts the same options as CSV.new, as well as the following options:

:except

Symbol or Array of Symbols of columns not to include in the CSV output.

:only

Symbol or Array of Symbols of columns to include in the CSV output, ignoring all other columns

:include

Symbol or Array of Symbols specifying non-column attributes to include in the CSV output.



143
144
145
146
147
148
149
# File 'lib/sequel/plugins/csv_serializer.rb', line 143

def to_csv(opts = {})
  opts = model.process_csv_serializer_opts(opts)

  CSV.generate(opts) do |csv|
    csv << opts[:headers].map{|k| send(k)}
  end
end