Sha256: 60c936d438275904dc3fbf706ec4ee9af070cdb51d86befb9ba3a7e5782d8b84
Contents?: true
Size: 341 Bytes
Versions: 1
Compression:
Stored size: 341 Bytes
Contents
# frozen_string_literal: true # TODO: move this into chronicle-core after figuring out what to do about data vs properties module Chronicle module ETL class Record attr_accessor :data, :extraction def initialize(data: {}, extraction: nil) @data = data @extraction = extraction end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
chronicle-etl-0.6.1 | lib/chronicle/etl/record.rb |