Sha256: 81358feb8e407d6aae36de4c124bedd0e2f0409a9d76b5d65e430889819a9469
Contents?: true
Size: 1.33 KB
Versions: 8
Compression:
Stored size: 1.33 KB
Contents
# encoding: utf-8 require 'money' module Spree class Money attr_reader :money delegate :cents, :to => :money def initialize(amount, options={}) @money = Monetize.parse([amount, (options[:currency] || Spree::Config[:currency])].join) @options = {} @options[:with_currency] = Spree::Config[:display_currency] @options[:symbol_position] = Spree::Config[:currency_symbol_position].to_sym @options[:no_cents] = Spree::Config[:hide_cents] @options[:decimal_mark] = Spree::Config[:currency_decimal_mark] @options[:thousands_separator] = Spree::Config[:currency_thousands_separator] @options[:sign_before_symbol] = Spree::Config[:currency_sign_before_symbol] @options.merge!(options) # Must be a symbol because the Money gem doesn't do the conversion @options[:symbol_position] = @options[:symbol_position].to_sym end def to_s @money.format(@options) end def to_html(options = { :html => true }) output = @money.format(@options.merge(options)) if options[:html] # 1) prevent blank, breaking spaces # 2) prevent escaping of HTML character entities output = output.sub(" ", " ").html_safe end output end def as_json(*) to_s end def ==(obj) @money == obj.money end end end
Version data entries
8 entries across 8 versions & 1 rubygems