mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-03-02 02:11:33 +00:00
8 lines
141 B
Ruby
8 lines
141 B
Ruby
module Spree
|
|
module MoneyHelper
|
|
def with_currency(amount, options = {})
|
|
Spree::Money.new(amount, options).to_s
|
|
end
|
|
end
|
|
end
|