wedding-planner/config/initializers/ruby_extensions.rb

15 lines
245 B
Ruby
Raw Normal View History

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