Sha256: cd40b495bbd8784dcb5c81dde1165b02bda2ebbb678eccc6047f78532edeb8e4
Contents?: true
Size: 252 Bytes
Versions: 1
Compression:
Stored size: 252 Bytes
Contents
# frozen_string_literal: true module ReciteCSV module Row class Base attr_reader :_raw_data def initialize(raw_data) @_raw_data = raw_data end def [](key) self._raw_data[key] end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
recite_csv-0.1.1 | lib/recite_csv/row/base.rb |