Skip to content

Instantly share code, notes, and snippets.

@steveklabnik
Last active December 16, 2015 20:29
Embed
What would you like to do?
def self.from_csv(file, name)
Event.create(name: name).tap do |event|
CSV.foreach(file, headers: true, header_converters: :symbol, encoding: Encoding::UTF_8) do |row|
Attendee.create!(row.to_hash.merge({event_id: event.id}))
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment