Welcome to mirror list, hosted at ThFree Co, Russian Federation.

single_batch.rb « csv_builders « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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