mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
18 lines
225 B
Ruby
18 lines
225 B
Ruby
module OpenFoodNetwork::Reports
|
|
class Row
|
|
include Blockenspiel::DSL
|
|
|
|
def initialize
|
|
@columns = []
|
|
end
|
|
|
|
def column(&block)
|
|
@columns << block
|
|
end
|
|
|
|
def to_a
|
|
@columns
|
|
end
|
|
end
|
|
end
|