Sha256: ab98cf16e840b766f3bfa8bf7242f39064b173e35aa1945f981b84fd5d7df4bb
Contents?: true
Size: 1.5 KB
Versions: 1
Compression:
Stored size: 1.5 KB
Contents
class ActiveReport::Hash < ActiveReport::Base attr_accessor :datum, :only, :except, :headers, :options def initialize(datum, only: nil, except: nil, headers: nil, options: {}) @datum, @except, @headers, @only = datum, except, headers, only @options = duplicate_options.merge!(options) end def self.export(datum, only: nil, except: nil, headers: nil, options: {}) new(datum, only: only, except: except, headers: headers, options: options).export end def self.import(datum, only: nil, except: nil, headers: nil, options: {}) new(datum, only: only, except: except, headers: headers, options: options).import end def export @datum, @only, @except = munge(@datum), munge(@only), munge(@except) CSV.generate(@options) do |csv| csv << (@headers || (filter_first(@datum) || @datum.first).keys.map { |header| humanize(header) }) @datum.lazy.each { |data| csv << (filter(data) || data).values } end end def import @only, @except = munge(@only), munge(@except) datum = [] CSV.foreach(@datum, @options).with_index do |data, line| data = encode_to_utf8(data) if force_encoding? if @headers.nil? && line.zero? @headers = data else subdata = {} @headers.lazy.each_with_index do |header, i| subdata.store(header.to_s, data.fetch(i, nil)) end filter(subdata) datum.push(subdata) end end datum = datum.first if datum.size == 1 datum = metatransform(datum) datum end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
active_report-3.0.0 | lib/active_report/hash.rb |