mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-20 13:09:59 +00:00
12 lines
168 B
Ruby
12 lines
168 B
Ruby
# frozen_string_literal: true
|
|
|
|
module CsvBuilders
|
|
class SingleBatch < CsvBuilder
|
|
protected
|
|
|
|
def each(&block)
|
|
@collection.each(&block)
|
|
end
|
|
end
|
|
end
|