15 lines
245 B
Ruby
15 lines
245 B
Ruby
# Copyright (C) 2024 Manuel Bustillo
|
|
|
|
# Copyright (C) 2024-2025 LibreWeddingPlanner contributors
|
|
|
|
class Numeric
|
|
def to_currency
|
|
Money.from_amount(self, "EUR").format
|
|
end
|
|
end
|
|
|
|
class Set
|
|
def to_table
|
|
Tables::Table.new(self)
|
|
end
|
|
end |