There was a request to be able to specify the starting row of data for an import file, useful in the case of multi line headers.
from_csv(file, template, :skip => 4)
There was a request to be able to pass in an array of column names at runtime for importing, similar to exporting
from_csv(file, [:column1, :column2])
Allowing templates to be db-managed rather than having to define them in the model.
fix @ f8dc249
Implemented exactly as outlined above
Resolved