11 lines
168 B
Ruby
11 lines
168 B
Ruby
# frozen_string_literal: true
|
|
|
|
module CsvBuilders
|
|
class SingleBatch < CsvBuilder
|
|
protected
|
|
|
|
def each(&block)
|
|
@collection.each(&block)
|
|
end
|
|
end
|
|
end
|