Art Vandelay Versions Save

Art Vandelay is an importer/exporter for Rails 6.0 and higher.

v0.2.0

11 months ago

Add option that allows stripping of whitespace for all values (#19)

csv_string = CSV.generate do |csv|
  csv << ["email_address  ", " passcode  "]
  csv << ["  george@vandelay_industries.com  ", "  bosco  "]
end

result = ArtVandelay::Import.new(:users, strip: true).csv(csv_string, attributes: {email_address: :email, passcode: :password})
# => #<ArtVandelay::Import::Result>

result.rows_accepted
# => [{:row=>["george@vandelay_industries.com", "bosco"], :id=>1}]

v0.1.0

1 year ago

0.1.0 (December 9, 2022)

Initial release 🎉