Sha256: 4d3479af56163c7522bd53ffe554f2dfd024b2c39ce3fb69e87ff745ed109e9f
Contents?: true
Size: 242 Bytes
Versions: 31
Compression:
Stored size: 242 Bytes
Contents
# frozen_string_literal: true # Keppler module Uploadable extend ActiveSupport::Concern included do require 'csv' def self.upload(file) CSV.foreach(file.path, headers: true) { |row| create! row.to_hash } end end end
Version data entries
31 entries across 30 versions & 1 rubygems