13 lines
187 B
Ruby
Raw Permalink Normal View History

2024-10-27 21:42:45 +00:00
# Copyright (C) 2024 Manuel Bustillo
2024-07-11 20:06:48 +02:00
class Numeric
def to_currency
Money.from_amount(self, "EUR").format
end
end
class Array
def to_table
Tables::Table.new(self)
end
2024-07-11 20:06:48 +02:00
end