5 lines
83 B
Ruby
5 lines
83 B
Ruby
class Numeric
|
|
def to_currency
|
|
Money.from_amount(self, "EUR").format
|
|
end
|
|
end |