13 lines
187 B
Ruby
13 lines
187 B
Ruby
# Copyright (C) 2024 Manuel Bustillo
|
|
|
|
class Numeric
|
|
def to_currency
|
|
Money.from_amount(self, "EUR").format
|
|
end
|
|
end
|
|
|
|
class Array
|
|
def to_table
|
|
Tables::Table.new(self)
|
|
end
|
|
end |