13 lines
185 B
Ruby

# Copyright (C) 2024 Manuel Bustillo
class Numeric
def to_currency
Money.from_amount(self, "EUR").format
end
end
class Set
def to_table
Tables::Table.new(self)
end
end