Sha256: 7e79c0d6863067ca2a39ea2f69586cbc093543e9c007d5d746d6635bae9abf6b
Contents?: true
Size: 368 Bytes
Versions: 6
Compression:
Stored size: 368 Bytes
Contents
require 'csv' module Ddr::IngestTools::DdrRdrMigrator class ManifestParser attr_reader :manifest_file_path def initialize(manifest_file_path) @manifest_file_path = manifest_file_path end def as_csv_table @csv_table ||= CSV.read(manifest_file_path, headers: true) end def headers as_csv_table.headers end end end
Version data entries
6 entries across 6 versions & 1 rubygems