class CsvShaper::Row

Row Handles creating of cells within a row and assigning of the model’s values to cells Examples: “‘ # pass a model to the row csv.row @model do |csv, model|

...

end

# create an empty row instance csv.row do |csv|

...

end

# create a row with prefilled cells from a model # note no block is passed csv.row @model, :name, :age, :location “‘