Sha256: 6e327b0fb74f69591638724b51fd80969e1e0d6d43899008c825cfe41fd02770
Contents?: true
Size: 536 Bytes
Versions: 24
Compression:
Stored size: 536 Bytes
Contents
# frozen_string_literal: true module Decidim module Log module ValueTypes # This class presents the given value as a currency. Check # the `DefaultPresenter` for more info on how value # presenters work. class CurrencyPresenter < DefaultPresenter # Public: Presents the value as a currency. # # Returns an HTML-safe String. def present return unless value h.number_to_currency(value, unit: Decidim.currency_unit) end end end end end
Version data entries
24 entries across 24 versions & 1 rubygems