mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-26 20:56:48 +00:00
16 lines
194 B
Ruby
16 lines
194 B
Ruby
module OpenFoodNetwork::Reports
|
|
class Row
|
|
def initialize
|
|
@columns = []
|
|
end
|
|
|
|
def column(&block)
|
|
@columns << block
|
|
end
|
|
|
|
def to_a
|
|
@columns
|
|
end
|
|
end
|
|
end
|