Files
gitlab-foss/lib/csv_builders/single_batch.rb
2020-05-15 06:08:40 +00:00

12 lines
168 B
Ruby

# frozen_string_literal: true
module CsvBuilders
class SingleBatch < CsvBuilder
protected
def each(&block)
@collection.each(&block)
end
end
end