summaryrefslogtreecommitdiff
path: root/lib/csv_builders/single_batch.rb
blob: bed6b7424b3a6bf8acec95d28b293eee15189b78 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

module CsvBuilders
  class SingleBatch < CsvBuilder
    protected

    def each(&block)
      @collection.each(&block)
    end
  end
end